HomeSort by relevance Sort by last modified time
    Searched refs:mColorMatrix (Results 1 - 12 of 12) sorted by null

  /cts/tests/tests/graphics/src/android/graphics/cts/
ColorMatrixTest.java 42 private ColorMatrix mColorMatrix;
46 mColorMatrix = new ColorMatrix(SOURCE);
64 float[] ret = mColorMatrix.getArray();
67 mColorMatrix.reset();
68 ret = mColorMatrix.getArray();
83 float[] ret = mColorMatrix.getArray();
93 mColorMatrix.set(fArray);
94 ret = mColorMatrix.getArray();
100 float[] ret = mColorMatrix.getArray();
110 mColorMatrix.set(new ColorMatrix(fArray))
    [all...]
  /frameworks/base/services/core/java/com/android/server/display/
DisplayTransformManager.java 54 @GuardedBy("mColorMatrix")
55 private final SparseArray<float[]> mColorMatrix = new SparseArray<>(3);
59 @GuardedBy("mColorMatrix")
76 synchronized (mColorMatrix) {
77 final float[] value = mColorMatrix.get(key);
98 synchronized (mColorMatrix) {
99 final float[] oldValue = mColorMatrix.get(level);
102 mColorMatrix.remove(level);
104 mColorMatrix.put(level, Arrays.copyOf(value, value.length));
118 @GuardedBy("mColorMatrix")
    [all...]
  /frameworks/native/services/surfaceflinger/RenderEngine/
Description.h 55 mat4 mColorMatrix;
Description.cpp 87 mColorMatrix = mtx;
92 return mColorMatrix;
Program.cpp 142 glUniformMatrix4fv(mColorMatrixLoc, 1, GL_FALSE, desc.mColorMatrix.asArray());
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ScriptGroupTest.java 47 ScriptIntrinsicColorMatrix mColorMatrix;
49 mColorMatrix = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS));
59 mColorMatrix.setColorMatrix(m);
62 b.addKernel(mColorMatrix.getKernelID());
65 group.setInput(mColorMatrix.getKernelID(), a1_copy);
66 group.setOutput(mColorMatrix.getKernelID(), a2_copy);
70 mColorMatrix.destroy();
81 ScriptIntrinsicColorMatrix mColorMatrix, mColorMatrix2;
83 mColorMatrix = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS));
95 mColorMatrix.setColorMatrix(m)
    [all...]
ImageProcessingTest.java 665 ScriptIntrinsicColorMatrix mColorMatrix;
666 mColorMatrix = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS));
678 mColorMatrix.setGreyscale();
683 mColorMatrix.forEach(a1_copy, a2_copy);
689 mColorMatrix.setColorMatrix(m);
694 mColorMatrix.forEach(a1_copy, a2_copy);
698 mColorMatrix.destroy();
797 ScriptIntrinsicColorMatrix mColorMatrix;
800 mColorMatrix = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS));
819 mColorMatrix.setColorMatrix(m)
    [all...]
  /packages/apps/Car/Media/src/com/android/car/media/
CrossfadeImageView.java 47 private final ColorMatrix mColorMatrix = new ColorMatrix();
125 mColorMatrix.setSaturation((10 * i) / 100f);
126 cf = new ColorMatrixColorFilter(mColorMatrix);
  /packages/apps/Contacts/src/com/android/contacts/widget/
MultiShrinkScroller.java 170 private final ColorMatrix mColorMatrix = new ColorMatrix();
    [all...]
  /frameworks/native/services/surfaceflinger/
SurfaceFlinger.h 708 mat4 mColorMatrix;
SurfaceFlinger.cpp     [all...]
SurfaceFlinger_hwc1.cpp     [all...]

Completed in 224 milliseconds