Home
last modified time | relevance | path

Searched refs:mBlendMode (Results 1 – 9 of 9) sorted by relevance

/hardware/interfaces/graphics/composer/aidl/vts/
DReadbackVts.h82 void setBlendMode(BlendMode blendMode) { mBlendMode = blendMode; } in setBlendMode()
84 BlendMode getBlendMode() const { return mBlendMode; } in getBlendMode()
105 BlendMode mBlendMode = BlendMode::NONE; variable
DReadbackVts.cpp36 writer.setLayerBlendMode(mDisplay, mLayer, mBlendMode); in write()
80 layerSettings.disableBlending = mBlendMode == BlendMode::NONE; in toRenderEngineLayerSettings()
81 layerSettings.source.buffer.isOpaque = mBlendMode == BlendMode::NONE; in toRenderEngineLayerSettings()
333 layerSettings.source.buffer.usePremultipliedAlpha = mBlendMode == BlendMode::PREMULTIPLIED; in toRenderEngineLayerSettings()
/hardware/interfaces/graphics/composer/2.2/utils/vts/include/composer-vts/2.2/
DReadbackVts.h75 void setBlendMode(IComposerClient::BlendMode blendMode) { mBlendMode = blendMode; } in setBlendMode()
85 IComposerClient::BlendMode mBlendMode = IComposerClient::BlendMode::NONE; variable
/hardware/interfaces/graphics/composer/2.2/utils/vts/
DReadbackVts.cpp37 writer->setLayerBlendMode(mBlendMode); in write()
82 layerSettings.disableBlending = mBlendMode == IComposerClient::BlendMode::NONE; in toRenderEngineLayerSettings()
273 mBlendMode == IComposerClient::BlendMode::PREMULTIPLIED; in toRenderEngineLayerSettings()
/hardware/qcom/display/msm8994/libhwcomposer/
DHWC2On1Adapter.cpp1981 mBlendMode(*this, BlendMode::None), in Layer()
2038 mBlendMode.setPending(mode); in setBlendMode()
2182 output << " Blend mode: " << to_string(mBlendMode.getValue()); in dump()
2207 if (applyAllState || mBlendMode.isDirty()) { in applyCommonState()
2208 hwc1Layer.blending = getHwc1Blending(mBlendMode.getPendingValue()); in applyCommonState()
2209 mBlendMode.latch(); in applyCommonState()
DHWC2On1Adapter.h563 LatchedState<HWC2::BlendMode> mBlendMode; variable
/hardware/interfaces/graphics/composer/2.1/utils/hwc2on1adapter/
DHWC2On1Adapter.cpp1910 mBlendMode(BlendMode::None), in Layer()
1965 mBlendMode = mode; in setBlendMode()
2105 output << " Blend mode: " << to_string(mBlendMode); in dump()
2127 hwc1Layer.blending = getHwc1Blending(mBlendMode); in applyCommonState()
/hardware/interfaces/graphics/composer/2.1/utils/hwc2on1adapter/include/hwc2on1adapter/
DHWC2On1Adapter.h592 HWC2::BlendMode mBlendMode; variable
/hardware/interfaces/graphics/composer/2.2/vts/functional/
DVtsHalGraphicsComposerV2_2ReadbackTest.cpp964 IComposerClient::BlendMode blendMode = layer->mBlendMode; in setExpectedColors()