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

/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
H A DRefocusFilter.java102 LayerInfo layerInfo = blurStack.getLayerInfo(targetLayer);
103 setTargetLayer(layerInfo);
108 int dilationRadius = getKernelRadius(layerInfo.backDepth, blurStack);
145 LayerInfo layerInfo = blurStack.getLayerInfo(targetLayer);
146 setTargetLayer(layerInfo);
151 int dilationRadius = getKernelRadius(layerInfo.frontDepth, blurStack);
199 protected abstract void setTargetLayer(LayerInfo layerInfo); argument
H A DBlurStack.java15 * For a layer n, its depth interval is (@code [layerInfo[n].backDepth,
16 * layerInfo[n].frontDepth]), where (@code backDepth<=frontDepth).
69 private LayerInfo[] layerInfo; field in class:BlurStack
93 return layerInfo.length;
97 return layerInfo[layer];
107 return layerInfo[layer].frontDepth - layerInfo[layer].backDepth + 1;
123 return layerInfo[layer].backDepth + relativeDepthInLayer;
166 // Computes {@code layerInfo, focusLayer}, assuming {@code diskRadius}
177 s += "focus disparity: " + layerInfo[focusLaye
[all...]
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/d1new/
H A DRefocusFilterd1new.java106 protected void setTargetLayer(LayerInfo layerInfo) { argument
107 scriptC.invoke_SetTargetLayer(layerInfo.frontDepth, layerInfo.backDepth);
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/f32/
H A DRefocusFilterF32.java104 protected void setTargetLayer(LayerInfo layerInfo) { argument
105 scriptC.invoke_SetTargetLayer(layerInfo.frontDepth, layerInfo.backDepth);
/frameworks/native/services/surfaceflinger/
H A DLayer.cpp1897 void Layer::writeToProto(LayerProto* layerInfo, LayerVector::StateSet stateSet) { argument
1905 layerInfo->set_id(sequence);
1906 layerInfo->set_name(getName().c_str());
1907 layerInfo->set_type(String8(getTypeId()));
1910 layerInfo->add_children(child->sequence);
1916 layerInfo->add_relatives(strongRelative->sequence);
1921 layerInfo->mutable_transparent_region());
1922 LayerProtoHelper::writeToProto(visibleRegion, layerInfo->mutable_visible_region());
1923 LayerProtoHelper::writeToProto(surfaceDamageRegion, layerInfo->mutable_damage_region());
1925 layerInfo
1979 writeToProto(LayerProto* layerInfo, int32_t hwcId) argument
[all...]

Completed in 142 milliseconds