Home
last modified time | relevance | path

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

/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/
DDisplaySurface.h30 MOCK_METHOD1(beginFrame, status_t(bool mustRecompose));
DRenderSurface.h39 MOCK_METHOD1(beginFrame, status_t(bool mustRecompose));
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
DDisplaySurface.h43 virtual status_t beginFrame(bool mustRecompose) = 0;
DRenderSurface.h71 virtual status_t beginFrame(bool mustRecompose) = 0;
/frameworks/native/services/surfaceflinger/DisplayHardware/
DFramebufferSurface.h44 virtual status_t beginFrame(bool mustRecompose);
DFramebufferSurface.cpp84 status_t FramebufferSurface::beginFrame(bool /*mustRecompose*/) { in beginFrame() function in android::FramebufferSurface
DVirtualDisplaySurface.h88 virtual status_t beginFrame(bool mustRecompose);
DVirtualDisplaySurface.cpp122 status_t VirtualDisplaySurface::beginFrame(bool mustRecompose) { in beginFrame() function in android::VirtualDisplaySurface
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DRenderSurface.cpp109 status_t RenderSurface::beginFrame(bool mustRecompose) { in beginFrame() function in android::compositionengine::impl::RenderSurface
110 return mDisplaySurface->beginFrame(mustRecompose); in beginFrame()
/frameworks/base/libs/hwui/renderthread/
DEglManager.h60 Frame beginFrame(EGLSurface surface);
DEglManager.cpp425 Frame EglManager::beginFrame(EGLSurface surface) { in beginFrame() function in android::uirenderer::renderthread::EglManager
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DRenderSurface.h54 status_t beginFrame(bool mustRecompose) override;
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DRenderSurfaceTest.cpp187 EXPECT_CALL(*mDisplaySurface, beginFrame(true)).WillOnce(Return(NO_ERROR)); in TEST_F()
189 EXPECT_EQ(NO_ERROR, mSurface.beginFrame(true)); in TEST_F()
/frameworks/base/libs/hwui/pipeline/skia/
DSkiaOpenGLPipeline.cpp68 return mEglManager.beginFrame(mEglSurface); in getFrame()
/frameworks/native/services/surfaceflinger/tests/unittests/
DCompositionTest.cpp346 EXPECT_CALL(*test->mDisplaySurface, beginFrame(true)).Times(1); in setupNonEmptyFrameCompositionCallExpectations()
350 EXPECT_CALL(*test->mDisplaySurface, beginFrame(false)).Times(1); in setupEmptyFrameCompositionCallExpectations()
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.h779 void beginFrame(const sp<DisplayDevice>& display);
DSurfaceFlinger.cpp1764 beginFrame(display); in handleMessageRefresh()
2390 void SurfaceFlinger::beginFrame(const sp<DisplayDevice>& displayDevice) { in beginFrame() function in android::SurfaceFlinger
2415 display->getRenderSurface()->beginFrame(mustRecompose); in beginFrame()