Home | History | Annotate | Download | only in params

Lines Matching defs:POINT_SIZE

63     public static final int POINT_SIZE = 2;
84 * {@link CameraCharacteristics#TONEMAP_MAX_CURVE_POINTS} * {@value #POINT_SIZE} elements and
85 * at least 2 * {@value #POINT_SIZE} elements.</p>
92 * @param red An array of elements whose length is divisible by {@value #POINT_SIZE}
93 * @param green An array of elements whose length is divisible by {@value #POINT_SIZE}
94 * @param blue An array of elements whose length is divisible by {@value #POINT_SIZE}
110 checkArgumentArrayLengthDivisibleBy(red, POINT_SIZE, "red");
111 checkArgumentArrayLengthDivisibleBy(green, POINT_SIZE, "green");
112 checkArgumentArrayLengthDivisibleBy(blue, POINT_SIZE, "blue");
167 return getCurve(colorChannel).length / POINT_SIZE;
196 final float pIn = curve[index * POINT_SIZE + OFFSET_POINT_IN];
197 final float pOut = curve[index * POINT_SIZE + OFFSET_POINT_OUT];
215 * {@link #POINT_SIZE} elements after the {@code offset}
237 if (destination.length + offset < getPointCount(colorChannel) * POINT_SIZE) {
313 int pointCount = curve.length / POINT_SIZE;
343 private final static int MIN_CURVE_LENGTH = TONEMAP_MIN_CURVE_POINTS * POINT_SIZE;