Home
last modified time | relevance | path

Searched refs:mustRecompose (Results 1 – 11 of 11) sorted by relevance

/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/
DDisplaySurface.h30 MOCK_METHOD1(beginFrame, status_t(bool mustRecompose));
DRenderSurface.h40 MOCK_METHOD1(beginFrame, status_t(bool mustRecompose));
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
DDisplaySurface.h43 virtual status_t beginFrame(bool mustRecompose) = 0;
DRenderSurface.h77 virtual status_t beginFrame(bool mustRecompose) = 0;
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DRenderSurface.cpp123 status_t RenderSurface::beginFrame(bool mustRecompose) { in beginFrame() argument
124 return mDisplaySurface->beginFrame(mustRecompose); in beginFrame()
DOutput.cpp737 const bool mustRecompose = dirty && !(empty && wasEmpty); in beginFrame() local
742 mustRecompose ? "doing" : "skipping", getName().c_str(), flagPrefix[dirty], in beginFrame()
745 mRenderSurface->beginFrame(mustRecompose); in beginFrame()
747 if (mustRecompose) { in beginFrame()
/frameworks/native/services/surfaceflinger/DisplayHardware/
DFramebufferSurface.h46 virtual status_t beginFrame(bool mustRecompose);
DVirtualDisplaySurface.h88 virtual status_t beginFrame(bool mustRecompose);
DVirtualDisplaySurface.cpp127 status_t VirtualDisplaySurface::beginFrame(bool mustRecompose) { in beginFrame() argument
132 mMustRecompose = mustRecompose; in beginFrame()
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DRenderSurface.h55 status_t beginFrame(bool mustRecompose) override;
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DOutputTest.cpp2351 [[nodiscard]] auto thenExpectRenderSurfaceBeginFrameCall(bool mustRecompose) { in thenExpectRenderSurfaceBeginFrameCall()
2352 EXPECT_CALL(*getInstance()->mRenderSurface, beginFrame(mustRecompose)); in thenExpectRenderSurfaceBeginFrameCall()