Home
last modified time | relevance | path

Searched refs:CaptureFill (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/native/services/surfaceflinger/
H A DRenderArea.h22 enum class CaptureFill {CLEAR, OPAQUE}; enum
24 static float getCaptureFillValue(CaptureFill captureFill);
26 RenderArea(ui::Size reqSize, CaptureFill captureFill, ui::Dataspace reqDataSpace,
81 CaptureFill getCaptureFill() const { return mCaptureFill; } in getCaptureFill()
94 const CaptureFill mCaptureFill;
H A DRenderArea.cpp25 float RenderArea::getCaptureFillValue(CaptureFill captureFill) { in getCaptureFillValue()
27 case CaptureFill::CLEAR: in getCaptureFillValue()
29 case CaptureFill::OPAQUE: in getCaptureFillValue()
H A DDisplayRenderArea.cpp51 : RenderArea(reqSize, CaptureFill::OPAQUE, reqDataSpace, display->getLayerStackSpaceRect(), in DisplayRenderArea()
H A DLayerRenderArea.cpp48 : RenderArea(reqSize, CaptureFill::CLEAR, reqDataSpace, layerStackRect, allowSecureLayers), in LayerRenderArea()