Home
last modified time | relevance | path

Searched refs:layerInfo (Results 1 – 6 of 6) sorted by relevance

/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
DBlurStack.java69 private LayerInfo[] layerInfo; field in BlurStack
93 return layerInfo.length; in getNumLayers()
97 return layerInfo[layer]; in getLayerInfo()
107 return layerInfo[layer].frontDepth - layerInfo[layer].backDepth + 1; in getNumDepths()
123 return layerInfo[layer].backDepth + relativeDepthInLayer; in getDepth()
177 s += "focus disparity: " + layerInfo[focusLayer].frontDepth + ", " in toString()
178 + layerInfo[focusLayer].backDepth + "\n"; in toString()
182 for (int n = 0; n < layerInfo.length; ++n) { in toString()
183 int front = layerInfo[n].frontDepth; in toString()
184 int back = layerInfo[n].backDepth; in toString()
[all …]
DRefocusFilter.java102 LayerInfo layerInfo = blurStack.getLayerInfo(targetLayer); in processLayersFromBackToFocus() local
103 setTargetLayer(layerInfo); in processLayersFromBackToFocus()
108 int dilationRadius = getKernelRadius(layerInfo.backDepth, blurStack); in processLayersFromBackToFocus()
145 LayerInfo layerInfo = blurStack.getLayerInfo(targetLayer); in processLayersFromFrontToFocus() local
146 setTargetLayer(layerInfo); in processLayersFromFrontToFocus()
151 int dilationRadius = getKernelRadius(layerInfo.frontDepth, blurStack); in processLayersFromFrontToFocus()
199 protected abstract void setTargetLayer(LayerInfo layerInfo); in setTargetLayer() argument
/frameworks/native/services/surfaceflinger/
DLayer.cpp2218 void Layer::writeToProtoDrawingState(LayerProto* layerInfo, uint32_t traceFlags, in writeToProtoDrawingState() argument
2226 BarrierLayerProto* barrierLayerProto = layerInfo->add_barrier_layer(); in writeToProtoDrawingState()
2235 [&]() { return layerInfo->mutable_active_buffer(); }); in writeToProtoDrawingState()
2237 layerInfo->mutable_buffer_transform()); in writeToProtoDrawingState()
2239 layerInfo->set_invalidate(contentDirty); in writeToProtoDrawingState()
2240 layerInfo->set_is_protected(isProtected()); in writeToProtoDrawingState()
2241 layerInfo->set_dataspace(dataspaceDetails(static_cast<android_dataspace>(getDataSpace()))); in writeToProtoDrawingState()
2242 layerInfo->set_queued_frames(getQueuedFrameCount()); in writeToProtoDrawingState()
2243 layerInfo->set_refresh_pending(isBufferLatched()); in writeToProtoDrawingState()
2244 layerInfo->set_curr_frame(mCurrentFrameNumber); in writeToProtoDrawingState()
[all …]
DLayer.h537 void writeToProtoDrawingState(LayerProto* layerInfo, uint32_t traceFlags,
542 void writeToProtoCommonState(LayerProto* layerInfo, LayerVector::StateSet stateSet,
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/f32/
DRefocusFilterF32.java104 protected void setTargetLayer(LayerInfo layerInfo) { in setTargetLayer() argument
105 scriptC.invoke_SetTargetLayer(layerInfo.frontDepth, layerInfo.backDepth); in setTargetLayer()
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/d1new/
DRefocusFilterd1new.java106 protected void setTargetLayer(LayerInfo layerInfo) { in setTargetLayer() argument
107 scriptC.invoke_SetTargetLayer(layerInfo.frontDepth, layerInfo.backDepth); in setTargetLayer()