Home
last modified time | relevance | path

Searched refs:beginFrame (Results 1 – 20 of 20) sorted by relevance

/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/
H A DDisplaySurface.h31 MOCK_METHOD1(beginFrame, status_t(bool mustRecompose));
H A DRenderSurface.h40 MOCK_METHOD1(beginFrame, status_t(bool mustRecompose));
H A DOutput.h97 MOCK_METHOD0(beginFrame, void());
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
H A DDisplaySurface.h44 virtual status_t beginFrame(bool mustRecompose) = 0;
H A DRenderSurface.h78 virtual status_t beginFrame(bool mustRecompose) = 0;
H A DOutput.h285 virtual void beginFrame() = 0;
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/src/
H A DRenderSurface.cpp125 status_t RenderSurface::beginFrame(bool mustRecompose) { in beginFrame() function in android::compositionengine::impl::RenderSurface
126 return mDisplaySurface->beginFrame(mustRecompose); in beginFrame()
H A DOutput.cpp438 beginFrame(); in present()
912 void Output::beginFrame() { in beginFrame() function in android::compositionengine::impl::Output
934 mRenderSurface->beginFrame(mustRecompose); in beginFrame()
/aosp12/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DFramebufferSurface.h47 virtual status_t beginFrame(bool mustRecompose);
H A DVirtualDisplaySurface.h88 virtual status_t beginFrame(bool mustRecompose);
H A DFramebufferSurface.cpp90 status_t FramebufferSurface::beginFrame(bool /*mustRecompose*/) { in beginFrame() function in android::FramebufferSurface
H A DVirtualDisplaySurface.cpp127 status_t VirtualDisplaySurface::beginFrame(bool mustRecompose) { in beginFrame() function in android::VirtualDisplaySurface
/aosp12/frameworks/base/libs/hwui/renderthread/
H A DEglManager.h59 Frame beginFrame(EGLSurface surface);
H A DEglManager.cpp495 Frame EglManager::beginFrame(EGLSurface surface) { in beginFrame() function in android::uirenderer::renderthread::EglManager
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
H A DRenderSurface.h59 status_t beginFrame(bool mustRecompose) override;
H A DOutput.h90 void beginFrame() override;
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
H A DRenderSurfaceTest.cpp194 EXPECT_CALL(*mDisplaySurface, beginFrame(true)).WillOnce(Return(NO_ERROR)); in TEST_F()
196 EXPECT_EQ(NO_ERROR, mSurface.beginFrame(true)); in TEST_F()
H A DOutputTest.cpp1765 MOCK_METHOD0(beginFrame, void());
1785 EXPECT_CALL(mOutput, beginFrame()); in TEST_F()
2572 EXPECT_CALL(*getInstance()->mRenderSurface, beginFrame(mustRecompose)); in thenExpectRenderSurfaceBeginFrameCall()
2579 getInstance()->mOutput.beginFrame(); in execute()
/aosp12/frameworks/base/libs/hwui/pipeline/skia/
H A DSkiaOpenGLPipeline.cpp69 return mEglManager.beginFrame(mEglSurface); in getFrame()
/aosp12/frameworks/native/services/surfaceflinger/tests/unittests/
H A DCompositionTest.cpp356 EXPECT_CALL(*test->mDisplaySurface, beginFrame(true)).Times(1); in setupNonEmptyFrameCompositionCallExpectations()
360 EXPECT_CALL(*test->mDisplaySurface, beginFrame(false)).Times(1); in setupEmptyFrameCompositionCallExpectations()