/frameworks/native/services/surfaceflinger/CompositionEngine/src/ |
D | Display.cpp | 110 void Display::setColorTransform(const compositionengine::CompositionRefreshArgs& args) { in setColorTransform() function in android::compositionengine::impl::Display 111 Output::setColorTransform(args); in setColorTransform() 118 status_t result = hwc.setColorTransform(*mId, *args.colorTransformMatrix); in setColorTransform()
|
D | Output.cpp | 140 void Output::setColorTransform(const compositionengine::CompositionRefreshArgs& args) { in setColorTransform() function in android::compositionengine::impl::Output 313 setColorTransform(refreshArgs); in present()
|
D | OutputLayer.cpp | 443 switch (auto error = hwcLayer->setColorTransform(outputIndependentState.colorTransform)) { in writeOutputIndependentPerFrameStateToHWC()
|
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/ |
D | MockHWC2.h | 71 MOCK_METHOD1(setColorTransform, Error(const android::mat4&));
|
D | DisplayTest.cpp | 399 mDisplay->setColorTransform(refreshArgs); in TEST_F() 404 EXPECT_CALL(mHwComposer, setColorTransform(DEFAULT_DISPLAY_ID, kIdentity)).Times(1); in TEST_F() 407 mDisplay->setColorTransform(refreshArgs); in TEST_F() 412 EXPECT_CALL(mHwComposer, setColorTransform(DEFAULT_DISPLAY_ID, kNonIdentity)).Times(1); in TEST_F() 415 mDisplay->setColorTransform(refreshArgs); in TEST_F()
|
D | MockHWComposer.h | 61 MOCK_METHOD2(setColorTransform, status_t(DisplayId, const mat4&));
|
D | OutputTest.cpp | 301 mOutput->setColorTransform(refreshArgs); in TEST_F() 318 mOutput->setColorTransform(refreshArgs); in TEST_F() 334 mOutput->setColorTransform(refreshArgs); in TEST_F() 350 mOutput->setColorTransform(refreshArgs); in TEST_F() 366 mOutput->setColorTransform(refreshArgs); in TEST_F() 1548 MOCK_METHOD1(setColorTransform, void(const compositionengine::CompositionRefreshArgs&)); 1565 EXPECT_CALL(mOutput, setColorTransform(Ref(args))); in TEST_F()
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/ |
D | Display.h | 51 void setColorTransform(const CompositionRefreshArgs&) override;
|
D | Output.h | 47 void setColorTransform(const compositionengine::CompositionRefreshArgs&) override;
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/ |
D | Output.h | 45 MOCK_METHOD1(setColorTransform, void(const compositionengine::CompositionRefreshArgs&));
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
D | HWC2.h | 213 [[clang::warn_unused_result]] virtual hal::Error setColorTransform( 291 hal::Error setColorTransform(const android::mat4& matrix, hal::ColorTransform hint) override; 386 [[clang::warn_unused_result]] virtual hal::Error setColorTransform( 428 hal::Error setColorTransform(const android::mat4& matrix) override;
|
D | HWComposer.h | 125 virtual status_t setColorTransform(DisplayId displayId, const mat4& transform) = 0; 272 status_t setColorTransform(DisplayId displayId, const mat4& transform) override;
|
D | HWC2.cpp | 558 Error Display::setColorTransform(const android::mat4& matrix, ColorTransform hint) { in setColorTransform() function in android::HWC2::impl::Display 559 auto intError = mComposer.setColorTransform(mId, matrix.asArray(), hint); in setColorTransform() 987 Error Layer::setColorTransform(const android::mat4& matrix) { in setColorTransform() function in android::HWC2::impl::Layer
|
D | ComposerHal.h | 152 virtual Error setColorTransform(Display display, const float* matrix, ColorTransform hint) = 0; 403 Error setColorTransform(Display display, const float* matrix, ColorTransform hint) override;
|
D | HWComposer.cpp | 673 status_t HWComposer::setColorTransform(DisplayId displayId, const mat4& transform) { in setColorTransform() function in android::impl::HWComposer 679 ->setColorTransform(transform, in setColorTransform()
|
D | ComposerHal.cpp | 629 Error Composer::setColorTransform(Display display, const float* matrix, in setColorTransform() function in android::Hwc2::impl::Composer 633 mWriter.setColorTransform(matrix, hint); in setColorTransform()
|
/frameworks/native/services/surfaceflinger/tests/unittests/mock/DisplayHardware/ |
D | MockDisplay.h | 78 MOCK_METHOD2(setColorTransform, hal::Error(const android::mat4&, hal::ColorTransform));
|
D | MockComposer.h | 88 MOCK_METHOD3(setColorTransform, Error(Display, const float*, ColorTransform));
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | StubTransaction.java | 118 public SurfaceControl.Transaction setColorTransform(SurfaceControl sc, float[] matrix, in setColorTransform() method in StubTransaction
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/ |
D | Output.h | 264 virtual void setColorTransform(const CompositionRefreshArgs&) = 0;
|
/frameworks/native/libs/renderengine/gl/ |
D | GLESRenderEngine.h | 161 void setColorTransform(const mat4& colorTransform);
|
/frameworks/native/services/surfaceflinger/tests/ |
D | LayerRenderTypeTransaction_test.cpp | 1721 Transaction().setColor(colorLayer, color).setColorTransform(colorLayer, matrix, vec3()).apply(); in TEST_P() 1781 .setColorTransform(parentLayer, matrix, vec3()) in TEST_P() 1853 .setColorTransform(parentLayer, matrixParent, vec3()) in TEST_P() 1854 .setColorTransform(colorLayer, matrixChild, vec3()) in TEST_P()
|
/frameworks/native/services/surfaceflinger/tests/fakehwc/ |
D | FakeComposerClient.h | 96 V2_1::Error setColorTransform(Display display, const float* matrix, int32_t hint) override;
|
/frameworks/native/services/vr/hardware_composer/impl/ |
D | vr_hwc.h | 248 Error setColorTransform(Display display, const float* matrix,
|
/frameworks/native/libs/gui/include/gui/ |
D | SurfaceComposerClient.h | 514 Transaction& setColorTransform(const sp<SurfaceControl>& sc, const mat3& matrix,
|