Home
last modified time | relevance | path

Searched refs:mFb (Results 1 – 10 of 10) sorted by relevance

/hardware/google/gfxstream/host/tests/
DFrameBuffer_unittest.cpp92 mFb = FrameBuffer::getFB(); in SetUp()
93 EXPECT_NE(nullptr, mFb); in SetUp()
95 mFb->setupSubWindow( in SetUp()
108 mFb = FrameBuffer::getFB(); in SetUp()
109 ASSERT_NE(nullptr, mFb); in SetUp()
126 mFb = nullptr; in TearDown()
138 mFb->onSave(m_stream.get(), m_texture_saver); in saveSnapshot()
146 mFb->bindContext(0, 0, 0); in loadSnapshot()
153 mFb->onLoad(m_stream.get(), m_texture_loader); in loadSnapshot()
160 FrameBuffer* mFb = nullptr; member in gfxstream::__anon4f14abc00111::FrameBufferTest
[all …]
DSampleApplication.cpp259 mFb = FrameBuffer::getFB(); in SampleApplication()
262 mFb->setupSubWindow( in SampleApplication()
274 mColorBuffer = mFb->createColorBuffer(mWidth, mHeight, GL_RGBA, FRAMEWORK_FORMAT_GL_COMPATIBLE); in SampleApplication()
275 mContext = mFb->createEmulatedEglContext(0, 0, glVersion); in SampleApplication()
276 mSurface = mFb->createEmulatedEglWindowSurface(0, mWidth, mHeight); in SampleApplication()
278 mFb->bindContext(mContext, mSurface, mSurface); in SampleApplication()
279 mFb->setEmulatedEglWindowSurfaceColorBuffer(mSurface, mColorBuffer); in SampleApplication()
282 mTargetCb = mFb->createColorBuffer(mFb->getWidth(), in SampleApplication()
283 mFb->getHeight(), in SampleApplication()
286 mFb->openColorBuffer(mTargetCb); in SampleApplication()
[all …]
DDefaultFramebufferBlit_unittest.cpp63 mFb->disableFastBlitForTesting(); in ClearColor()
65 mFb->closeColorBuffer(mColorBuffer); in ClearColor()
66 mColorBuffer = mFb->createColorBuffer( in ClearColor()
68 mFb->setEmulatedEglWindowSurfaceColorBuffer(mSurface, mColorBuffer); in ClearColor()
159 mFb->readColorBuffer( in verifySwappedColor()
DGLSnapshotRendering_unittest.cpp46 mFb->flushEmulatedEglWindowSurfaceColorBuffer(mSurface); in drawLoop()
48 mFb->post(mColorBuffer); in drawLoop()
DSampleApplication.h100 FrameBuffer* mFb = nullptr; variable
DVulkan_unittest.cpp455 mFb = FrameBuffer::getFB(); in SetUp()
456 ASSERT_NE(nullptr, mFb); in SetUp()
462 if (mFb) { FrameBuffer::finalize(); } in TearDown()
466 FrameBuffer* mFb = nullptr; member in gfxstream::vk::__anonaea3c62c0111::VulkanFrameBufferTest
/hardware/google/gfxstream/host/
DPostWorkerGl.cpp64 mFb->lock(); in screenshot()
66 mFb->unlock(); in screenshot()
151 : mFb->findColorBuffer(currentDisplayColorBufferHandle).get(); in postImpl()
156 const auto transform = getTransformFromRotation(mFb->getZrot()); in postImpl()
181 const float dpr = mFb->getDpr(); in postImpl()
196 .right = mFb->windowWidth(), in postImpl()
197 .bottom = mFb->windowHeight(), in postImpl()
205 postLayerOptions.transform = getTransformFromRotation(mFb->getZrot()); in postImpl()
218 float dpr = mFb->getDpr(); in postWithOverlay()
219 int windowWidth = mFb->windowWidth(); in postWithOverlay()
[all …]
DPostWorker.cpp74 : mFb(fb), in PostWorker()
90 compositorRequest.target = mFb->borrowColorBufferForComposition(composeRequest.targetHandle, in composeImpl()
103 auto source = mFb->borrowColorBufferForComposition(guestLayer.cbHandle, in composeImpl()
DPostWorker.h83 FrameBuffer* mFb;
/hardware/google/gfxstream/host/vulkan/
DPostWorkerVk.cpp45 const auto imageInfo = mFb->borrowColorBufferForDisplay(cb->getHndl()); in postImpl()