Home
last modified time | relevance | path

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

/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
DCompositionRefreshArgs.h80 std::optional<mat4> colorTransformMatrix; member
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DOutputCompositionState.cpp57 dumpVal(out, "colorTransformMatrix", colorTransformMatrix); in dump()
DOutput.cpp257 auto& colorTransformMatrix = editState().colorTransformMatrix; in setColorTransform() local
258 if (!args.colorTransformMatrix || colorTransformMatrix == args.colorTransformMatrix) { in setColorTransform()
262 colorTransformMatrix = *args.colorTransformMatrix; in setColorTransform()
1425 clientCompositionDisplay.colorTransform = outputState.colorTransformMatrix; in generateClientCompositionDisplaySettings()
DDisplay.cpp104 if (mIsDisconnected || !halDisplayId || CC_LIKELY(!args.colorTransformMatrix)) { in setColorTransform()
109 status_t result = hwc.setColorTransform(*halDisplayId, *args.colorTransformMatrix); in setColorTransform()
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DOutputCompositionState.h110 mat4 colorTransformMatrix; member
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DDisplayTest.cpp370 refreshArgs.colorTransformMatrix = std::nullopt; in TEST_F()
379 refreshArgs.colorTransformMatrix = kIdentity; in TEST_F()
388 refreshArgs.colorTransformMatrix = kNonIdentity; in TEST_F()
DOutputTest.cpp458 mOutput->editState().colorTransformMatrix = kIdentity; in TEST_F()
462 refreshArgs.colorTransformMatrix = std::nullopt; in TEST_F()
467 EXPECT_EQ(kIdentity, mOutput->getState().colorTransformMatrix); in TEST_F()
474 mOutput->editState().colorTransformMatrix = kIdentity; in TEST_F()
479 refreshArgs.colorTransformMatrix = kIdentity; in TEST_F()
484 EXPECT_EQ(kIdentity, mOutput->getState().colorTransformMatrix); in TEST_F()
491 mOutput->editState().colorTransformMatrix = kNonIdentityHalf; in TEST_F()
495 refreshArgs.colorTransformMatrix = kIdentity; in TEST_F()
500 EXPECT_EQ(kIdentity, mOutput->getState().colorTransformMatrix); in TEST_F()
507 mOutput->editState().colorTransformMatrix = kIdentity; in TEST_F()
[all …]
/frameworks/native/services/surfaceflinger/CompositionEngine/src/planner/
DCachedSet.cpp176 .colorTransform = outputState.colorTransformMatrix, in render()
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.cpp2820 refreshArgs.colorTransformMatrix = mDrawingState.colorMatrix; in composite()
8584 .colorTransformMatrix = calculateColorMatrix(colorSaturation), in renderScreenImpl()