/external/angle/src/libANGLE/renderer/d3d/d3d9/ |
D | Framebuffer9.cpp | 253 IDirect3DSurface9 *readSurface = readRenderTarget->getSurface(); in blitImpl() local 254 ASSERT(readSurface); in blitImpl() 344 device->StretchRect(readSurface, &srcRect, drawSurface, &dstRect, D3DTEXF_NONE); in blitImpl() 346 SafeRelease(readSurface); in blitImpl() 371 IDirect3DSurface9 *readSurface = readDepthStencil->getSurface(); in blitImpl() local 378 device->StretchRect(readSurface, nullptr, drawSurface, nullptr, D3DTEXF_NONE); in blitImpl() 380 SafeRelease(readSurface); in blitImpl()
|
/external/angle/src/tests/egl_tests/ |
D | EGLSyncTest.cpp | 57 EGLSurface readSurface = eglGetCurrentSurface(EGL_READ); in TEST_P() local 61 EXPECT_NE(readSurface, EGL_NO_SURFACE); in TEST_P() 99 eglMakeCurrent(display, drawSurface, readSurface, context); in TEST_P() 137 EGLSurface readSurface = eglGetCurrentSurface(EGL_READ); in TEST_P() local 141 EXPECT_NE(readSurface, EGL_NO_SURFACE); in TEST_P() 150 eglMakeCurrent(display, drawSurface, readSurface, context); in TEST_P()
|
D | EGLMultiContextTest.cpp | 146 EGLSurface readSurface = EGL_NO_SURFACE; in TEST_P() local 147 EXPECT_TRUE(createPbufferSurface(dpy, config, 2560, 1080, &readSurface)); in TEST_P() 150 EXPECT_EGL_TRUE(eglMakeCurrent(dpy, drawSurface, readSurface, context)); in TEST_P() 161 eglQuerySurface(dpy, readSurface, EGL_HEIGHT, &value); in TEST_P()
|
/external/angle/src/libANGLE/renderer/d3d/ |
D | DisplayD3D.cpp | 245 egl::Surface *readSurface, in makeCurrent() argument 405 egl::Surface *readSurface = context->getCurrentReadSurface(); in waitNative() local 413 if (readSurface != nullptr) in waitNative() 415 SurfaceD3D *readSurfaceD3D = GetImplAs<SurfaceD3D>(readSurface); in waitNative()
|
D | DisplayD3D.h | 67 egl::Surface *readSurface,
|
/external/angle/src/libANGLE/renderer/gl/glx/ |
D | DisplayGLX.cpp | 397 egl::Surface *readSurface, in makeCurrent() argument 421 return DisplayGL::makeCurrent(display, drawSurface, readSurface, context); in makeCurrent() 805 egl::Surface *readSurface = context->getCurrentReadSurface(); in waitNative() local 812 if (readSurface != drawSurface && readSurface != nullptr) in waitNative() 814 SurfaceGLX *glxReadSurface = GetImplAs<SurfaceGLX>(readSurface); in waitNative()
|
D | DisplayGLX.h | 40 egl::Surface *readSurface,
|
/external/angle/src/libANGLE/renderer/gl/ |
D | DisplayGL.h | 54 egl::Surface *readSurface,
|
D | DisplayGL.cpp | 130 egl::Surface *readSurface, in makeCurrent() argument
|
/external/angle/src/libANGLE/ |
D | Framebuffer.h | 204 Framebuffer(const Context *context, egl::Surface *surface, egl::Surface *readSurface); 206 Framebuffer(const Context *context, rx::GLImplFactory *factory, egl::Surface *readSurface); 211 void setReadSurface(const Context *context, egl::Surface *readSurface);
|
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/ |
D | vktDynamicStateGeneralTests.cpp | 132 …const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context… in iterate() 229 …const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context… in iterate() 367 …const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context… in iterate()
|
D | vktDynamicStateVPTests.cpp | 106 …const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context… in iterate() 333 …const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context… in iterate()
|
D | vktDynamicStateCBTests.cpp | 140 …const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context… in iterate()
|
D | vktDynamicStateRSTests.cpp | 456 …const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context… in iterate() 549 …const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context… in iterate() 633 …const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context… in iterate() 948 …const auto colorPixels = colorBuffer->readSurface(queue, alloc, vk::VK_IMAGE_LAYOUT_TRANSFER_SRC_… in iterate()
|
/external/deqp/modules/egl/ |
D | teglResizeTests.cpp | 306 Surface readSurface (const glw::Functions& gl, IVec2 size) in readSurface() function 405 const Surface oldSurface = readSurface(m_gl, oldEglSize); in iterate() 414 const Surface newSurface = readSurface(m_gl, newEglSize); in iterate()
|
/external/angle/src/libANGLE/renderer/null/ |
D | DisplayNULL.h | 33 egl::Surface *readSurface,
|
/external/deqp/external/vulkancts/modules/vulkan/draw/ |
D | vktDrawSimpleTest.cpp | 183 …const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context… in iterate() 277 …const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context… in iterate()
|
D | vktDrawIndexedTest.cpp | 198 …const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context… in iterate() 305 …const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context… in iterate()
|
/external/angle/src/libGLESv2/ |
D | egl_stubs.cpp | 467 Surface *readSurface, in MakeCurrent() argument 479 if (previousDraw != drawSurface || previousRead != readSurface || previousContext != context) in MakeCurrent() 483 display->makeCurrent(thread, previousContext, drawSurface, readSurface, context), in MakeCurrent()
|
/external/angle/src/libANGLE/renderer/gl/cgl/ |
D | DisplayCGL.h | 52 egl::Surface *readSurface,
|
/external/angle/src/libANGLE/renderer/gl/wgl/ |
D | DisplayWGL.h | 71 egl::Surface *readSurface,
|
/external/angle/src/libANGLE/renderer/ |
D | DisplayImpl.h | 76 egl::Surface *readSurface,
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | DisplayVk.h | 94 egl::Surface *readSurface,
|
/external/angle/src/libANGLE/renderer/gl/egl/ |
D | DisplayEGL.h | 87 egl::Surface *readSurface,
|
/external/deqp/external/vulkancts/modules/vulkan/conditional_rendering/ |
D | vktConditionalClearAttachmentTests.cpp | 208 …const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context… in iterate()
|