Searched defs:getPointCount (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/params/
H A DTonemapCurve.java164 public int getPointCount(int colorChannel) { method in class:TonemapCurve
173 * <p>The index must be at least 0 but no greater than {@link #getPointCount(int)} for
180 * @param index at least 0 but no greater than {@code getPointCount(colorChannel)}
190 if (index < 0 || index >= getPointCount(colorChannel)) {
208 * {@link #getPointCount} points for that respective channel.</p>
214 * an array big enough to hold at least {@link #getPointCount} {@code *}
237 if (destination.length + offset < getPointCount(colorChannel) * POINT_SIZE) {

Completed in 61 milliseconds