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

  /cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
BlurStack.java 60 private static final int MIN_DEPTH = 1;
73 * For each depth value {@code d} within [MIN_DEPTH,MAX_DEPTH], its blur disc
74 * radius is saved in {@code diskRadius[d-MIN_DEPTH]}. Hence the length
75 * {@code diskRadius} is {@code MAX_DEPTH-MIN_DEPTH+1}.
104 return diskRadiusArray[depth - MIN_DEPTH];
177 float diskRadiusInterval = (blurStack.getDiskRadius(MIN_DEPTH)
191 String s = "disparity range: " + MAX_DEPTH + ", " + MIN_DEPTH + "\n";
252 int numLevels = MAX_DEPTH - MIN_DEPTH + 1;
260 for (int depth = MIN_DEPTH; depth <= MAX_DEPTH; ++depth) {
269 diskRadiusArray[depth - MIN_DEPTH] = Math.min(radius, MAX_DISC_RADIUS)
    [all...]
  /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
BlurStack.java 45 private static final int MIN_DEPTH = 1;
58 * For each depth value {@code d} within [MIN_DEPTH,MAX_DEPTH], its blur disc
59 * radius is saved in {@code diskRadius[d-MIN_DEPTH]}. Hence the length
60 * {@code diskRadius} is {@code MAX_DEPTH-MIN_DEPTH+1}.
89 return diskRadiusArray[depth - MIN_DEPTH];
162 float diskRadiusInterval = (blurStack.getDiskRadius(MIN_DEPTH)
176 String s = "disparity range: " + MAX_DEPTH + ", " + MIN_DEPTH + "\n";
237 int numLevels = MAX_DEPTH - MIN_DEPTH + 1;
245 for (int depth = MIN_DEPTH; depth <= MAX_DEPTH; ++depth) {
254 diskRadiusArray[depth - MIN_DEPTH] = Math.min(radius, MAX_DISC_RADIUS)
    [all...]

Completed in 351 milliseconds