Home
last modified time | relevance | path

Searched refs:readSurface (Results 1 – 25 of 76) sorted by relevance

1234

/third_party/flutter/skia/third_party/externals/angle2/src/tests/egl_tests/
DEGLSyncTest.cpp51 EGLSurface readSurface = eglGetCurrentSurface(EGL_READ); in TEST_P() local
55 EXPECT_NE(readSurface, EGL_NO_SURFACE); in TEST_P()
93 eglMakeCurrent(display, drawSurface, readSurface, context); in TEST_P()
131 EGLSurface readSurface = eglGetCurrentSurface(EGL_READ); in TEST_P() local
135 EXPECT_NE(readSurface, EGL_NO_SURFACE); in TEST_P()
144 eglMakeCurrent(display, drawSurface, readSurface, context); in TEST_P()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
DFramebuffer9.cpp253 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()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
DFramebuffer9.cpp251 IDirect3DSurface9 *readSurface = readRenderTarget->getSurface(); in blitImpl() local
252 ASSERT(readSurface); in blitImpl()
342 device->StretchRect(readSurface, &srcRect, drawSurface, &dstRect, D3DTEXF_NONE); in blitImpl()
344 SafeRelease(readSurface); in blitImpl()
368 IDirect3DSurface9 *readSurface = readDepthStencil->getSurface(); in blitImpl() local
375 device->StretchRect(readSurface, nullptr, drawSurface, nullptr, D3DTEXF_NONE); in blitImpl()
377 SafeRelease(readSurface); in blitImpl()
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
DEGLSyncTest.cpp57 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()
/third_party/cef/libcef/browser/gpu/
Dexternal_texture_manager.cc245 EGLSurface readSurface = eglGetCurrentSurface(EGL_READ); in CreateTexture() local
260 eglMakeCurrent(egl_display, drawSurface, readSurface, curContext); in CreateTexture()
313 EGLSurface readSurface = eglGetCurrentSurface(EGL_READ); in DeleteTexture() local
331 eglMakeCurrent(egl_display, drawSurface, readSurface, curContext); in DeleteTexture()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
DDisplayD3D.cpp228 egl::Surface *readSurface, in makeCurrent() argument
367 egl::Surface *readSurface = context->getCurrentReadSurface(); in waitNative() local
375 if (readSurface != nullptr) in waitNative()
377 SurfaceD3D *readSurfaceD3D = GetImplAs<SurfaceD3D>(readSurface); in waitNative()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
DDisplayD3D.cpp245 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()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libEGL/
Dmain.cpp57 if(current->readSurface) in releaseCurrent()
59 current->readSurface->release(); in releaseCurrent()
86 current->readSurface = nullptr; in attachThread()
301 if(current->readSurface) in setCurrentReadSurface()
303 current->readSurface->release(); in setCurrentReadSurface()
306 current->readSurface = surface; in setCurrentReadSurface()
313 return current->readSurface; in getCurrentReadSurface()
Dmain.h39 Surface *readSurface; member
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/glx/
DDisplayGLX.cpp380 egl::Surface *readSurface, in makeCurrent() argument
396 return DisplayGL::makeCurrent(drawSurface, readSurface, context); in makeCurrent()
754 egl::Surface *readSurface = context->getCurrentReadSurface(); in waitNative() local
761 if (readSurface != drawSurface && readSurface != nullptr) in waitNative()
763 SurfaceGLX *glxReadSurface = GetImplAs<SurfaceGLX>(readSurface); in waitNative()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/glx/
DDisplayGLX.cpp397 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()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DDisplayGL.h43 egl::Surface *readSurface,
DDisplayGL.cpp54 egl::Surface *readSurface, in makeCurrent() argument
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DDisplayGL.h54 egl::Surface *readSurface,
DDisplayGL.cpp114 egl::Surface *readSurface, in makeCurrent() argument
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/dynamic_state/
DvktDynamicStateGeneralTests.cpp132 …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()
DvktDynamicStateVPTests.cpp106 …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()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DFramebuffer.h202 Framebuffer(const Context *context, egl::Surface *surface, egl::Surface *readSurface);
204 Framebuffer(const Context *context, rx::GLImplFactory *factory, egl::Surface *readSurface);
209 void setReadSurface(const Context *context, egl::Surface *readSurface);
/third_party/vk-gl-cts/modules/egl/
DteglResizeTests.cpp306 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()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/null/
DDisplayNULL.h30 egl::Surface *readSurface,
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/null/
DDisplayNULL.h33 egl::Surface *readSurface,
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/
DDisplayImpl.h64 egl::Surface *readSurface,
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
DvktDrawSimpleTest.cpp183 …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()
DvktDrawIndexedTest.cpp198 …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()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DDisplayVk.h31 egl::Surface *readSurface,

1234