Home
last modified time | relevance | path

Searched refs:layer (Results 1 – 13 of 13) sorted by relevance

/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
Dpixel_format_f32.rsh10 // 2. When processing each layer, we use its field (active) to mark
11 // whether or not a pixel is on the current target layer. For pixels that are
16 // 3. After each layer is processed from back-most layer to focal depth layer,
18 // layer processing for the next iteration.
20 // 4. After each layer is processed from front-most layer to focal depth layer,
23 // 5. After each layer is processed in either of the two passes, the fields
33 // active = 1: the pixel is on the target layer;
39 // matte/(dilation_radius+1) is the actual value used in layer blending.
DBlurStack.java111 public LayerInfo getLayerInfo(int layer) { in getLayerInfo() argument
112 return layerInfo[layer]; in getLayerInfo()
121 public int getNumDepths(int layer) { in getNumDepths() argument
122 return layerInfo[layer].frontDepth - layerInfo[layer].backDepth + 1; in getNumDepths()
137 public int getDepth(int layer, int relativeDepthInLayer) { in getDepth() argument
138 return layerInfo[layer].backDepth + relativeDepthInLayer; in getDepth()
290 int layer = 0; in generateOneLayerForEachDepth() local
291 for (int depth = MAX_DEPTH; depth > frontFocalDepth; --depth, ++layer) { in generateOneLayerForEachDepth()
292 layerInfo[layer] = new LayerInfo(depth); in generateOneLayerForEachDepth()
296 focusLayer = layer; in generateOneLayerForEachDepth()
[all …]
Dlayer_info.rsh4 // An object that contains the front and back depths values of a layer
6 // Front and back depth values of this layer.
13 // layer.
15 // The max kernel radius of a layer.
Dlayer_info_fast.rsh4 // An object that contains the front and back depths values of a layer
6 // Front and back depth values of this layer.
13 // layer.
15 // The max kernel radius of a layer.
Dlayered_filter_d1new_helper.rsh20 // int2 that stores the target layer info: 1. front_depth, 2. back_depth; declared in layered_filte…
37 // may not be in the depth range of the target layer.
40 //Compute layer matte using global allocation
49 // this layer.
77 // If sharp->matte > 0, depth must be within the depth range of this layer.
90 // this layer.
117 // If sharp->matte > 0, depth must be within the depth range of this layer.
121 // Filters target layer when processing layers in pass one from the back-most to
123 // Use global allocation for filter from back most layer to focus layer
136 // Gets the visibility probability lookup table for the target layer depth.
[all …]
Dlayered_filter_f32_helper.rsh20 // may not be in the depth range of the target layer.
30 // this layer.
57 // If sharp->matte > 0, depth must be within the depth range of this layer.
61 // Filters target layer when processing layers in pass one from the back-most to
76 // Gets the visibility probability lookup table for the target layer depth.
89 // Filters only using pixels on or behind this layer to avoid color
90 // bleeding from layers in front of this layer. Doing visibility test in a
114 // Filters target layer when processing layers in pass one from the back-most to
150 // Filters the target layer when processing layers in pass two from the
Dluts_for_speedup_f32.rsh10 // A lookup table that heuristically computes the probability that a layer with
41 // For a depth value within the focal layer, only depth values in front
42 // of the focal layer are considered as its potential occluders. That
44 // than y but is still within the focal layer is _not_ considered as an
/cts/tests/tests/media/src/android/media/cts/
DImageReaderDecoderTest.java643 int layer = 0; in validateSwirl() local
654 if (VERBOSE) Log.v(TAG, "area=" + area + ", layer=" + layer + ", last=" in validateSwirl()
657 rawStats[layer][i] += oneStat[i]; in validateSwirl()
667 layer ^= 2; // NUM_SIDES / 2 in validateSwirl()
672 lastLayer = layer; in validateSwirl()
674 layer = (layer + 1) % NUM_SIDES; in validateSwirl()
677 for (layer = 0; layer < NUM_SIDES; ++layer) { in validateSwirl()
678 float[] stats = CodecUtils.Raw2YUVStats(rawStats[layer]); in validateSwirl()
679 if (DEBUG) Log.d(TAG, "layer-" + layer + ": " + Arrays.toString(stats)); in validateSwirl()
680 if (VERBOSE) Log.v(TAG, Arrays.toString(rawStats[layer])); in validateSwirl()
[all …]
/cts/hostsidetests/services/activityandwindowmanager/util/src/android/server/cts/
DSurfaceTraceReceiver.java54 default void setLayer(String windowName, int layer) {} in setLayer() argument
116 int layer = d.readInt(); in parseLayer() local
117 mObserver.setLayer(mCurrentWindowName, layer); in parseLayer()
/cts/tools/dex-tools/
DREADME.txt6 Support for direct navigation to super classes and similar will be implemented in a layer on top of…
/cts/apps/CtsVerifier/include/colorchecker/
Dcolorcheckertest.h76 void computeGradient(unsigned char* layer, float* gradientMap);
/cts/tools/cts-device-info/src/com/android/cts/deviceinfo/
DVulkanDeviceInfo.java597 JSONObject layer = layers.getJSONObject(i); in emitLayers() local
600 JSONObject properties = layer.getJSONObject(KEY_PROPERTIES); in emitLayers()
609 emitExtensions(store, layer); in emitLayers()
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/
DLayerDrawableTest.java1873 Drawable layer = new RippleDrawable(ColorStateList.valueOf(Color.BLACK), null, null); in testInvalidateDuringInit() local
1875 LayerDrawable orig = new LayerDrawable(new Drawable[] { layer }); in testInvalidateDuringInit()