Home
last modified time | relevance | path

Searched refs:drawSurface (Results 1 – 25 of 38) sorted by relevance

12

/external/angle/src/libANGLE/renderer/gl/egl/android/
DDisplayAndroid.cpp322 egl::Surface *drawSurface, in makeCurrent() argument
329 if (drawSurface) in makeCurrent()
331 SurfaceEGL *drawSurfaceEGL = GetImplAs<SurfaceEGL>(drawSurface); in makeCurrent()
354 ASSERT(GetImplAs<SurfaceEGL>(drawSurface)->isExternal()); in makeCurrent()
355 ASSERT(GetImplAs<SurfaceEGL>(drawSurface)->getSurface() == EGL_NO_SURFACE); in makeCurrent()
364 ASSERT(GetImplAs<SurfaceEGL>(drawSurface)->isExternal()); in makeCurrent()
365 ASSERT(GetImplAs<SurfaceEGL>(drawSurface)->getSurface() == EGL_NO_SURFACE); in makeCurrent()
379 return DisplayGL::makeCurrent(display, drawSurface, readSurface, context); in makeCurrent()
417 return DisplayGL::makeCurrent(display, drawSurface, readSurface, context); in makeCurrent()
DDisplayAndroid.h57 egl::Surface *drawSurface,
/external/angle/src/libANGLE/renderer/d3d/d3d9/
DFramebuffer9.cpp256 IDirect3DSurface9 *drawSurface = drawRenderTarget->getSurface(); in blitImpl() local
257 ASSERT(drawSurface); in blitImpl()
344 device->StretchRect(readSurface, &srcRect, drawSurface, &dstRect, D3DTEXF_NONE); in blitImpl()
347 SafeRelease(drawSurface); in blitImpl()
374 IDirect3DSurface9 *drawSurface = drawDepthStencil->getSurface(); in blitImpl() local
378 device->StretchRect(readSurface, nullptr, drawSurface, nullptr, D3DTEXF_NONE); in blitImpl()
381 SafeRelease(drawSurface); in blitImpl()
/external/angle/src/tests/egl_tests/
DEGLSyncTest.cpp56 EGLSurface drawSurface = eglGetCurrentSurface(EGL_DRAW); in TEST_P() local
60 EXPECT_NE(drawSurface, EGL_NO_SURFACE); in TEST_P()
99 eglMakeCurrent(display, drawSurface, readSurface, context); in TEST_P()
136 EGLSurface drawSurface = eglGetCurrentSurface(EGL_DRAW); in TEST_P() local
140 EXPECT_NE(drawSurface, EGL_NO_SURFACE); in TEST_P()
150 eglMakeCurrent(display, drawSurface, readSurface, context); in TEST_P()
/external/angle/src/libANGLE/renderer/gl/
DDisplayGL.cpp104 egl::Surface *drawSurface, in makeCurrent() argument
121 if (drawSurface == nullptr) in makeCurrent()
DDisplayGL.h48 egl::Surface *drawSurface,
/external/angle/src/libANGLE/renderer/d3d/
DDisplayD3D.cpp244 egl::Surface *drawSurface, in makeCurrent() argument
404 egl::Surface *drawSurface = context->getCurrentDrawSurface(); in waitNative() local
407 if (drawSurface != nullptr) in waitNative()
409 SurfaceD3D *drawSurfaceD3D = GetImplAs<SurfaceD3D>(drawSurface); in waitNative()
DDisplayD3D.h66 egl::Surface *drawSurface,
/external/angle/src/libANGLE/renderer/gl/glx/
DDisplayGLX.cpp396 egl::Surface *drawSurface, in makeCurrent() argument
401 (drawSurface ? GetImplAs<SurfaceGLX>(drawSurface)->getDrawable() : mInitPbuffer); in makeCurrent()
421 return DisplayGL::makeCurrent(display, drawSurface, readSurface, context); in makeCurrent()
804 egl::Surface *drawSurface = context->getCurrentDrawSurface(); in waitNative() local
806 if (drawSurface != nullptr) in waitNative()
808 SurfaceGLX *glxDrawSurface = GetImplAs<SurfaceGLX>(drawSurface); in waitNative()
812 if (readSurface != drawSurface && readSurface != nullptr) in waitNative()
DDisplayGLX.h39 egl::Surface *drawSurface,
/external/angle/src/libGLESv2/
Degl_stubs.cpp462 Surface *drawSurface, in MakeCurrent() argument
475 if (previousDraw != drawSurface || previousRead != readSurface || previousContext != context) in MakeCurrent()
479 display->makeCurrent(thread, previousContext, drawSurface, readSurface, context), in MakeCurrent()
642 Surface *drawSurface = static_cast<Surface *>(thread->getCurrentDrawSurface()); in SwapInterval() local
643 const Config *surfaceConfig = drawSurface->getConfig(); in SwapInterval()
647 drawSurface->setSwapInterval(clampedInterval); in SwapInterval()
/external/swiftshader/src/OpenGL/libEGL/
Dmain.cpp52 if(current->drawSurface) in releaseCurrent()
54 current->drawSurface->release(); in releaseCurrent()
85 current->drawSurface = nullptr; in attachThread()
277 if(current->drawSurface) in setCurrentDrawSurface()
279 current->drawSurface->release(); in setCurrentDrawSurface()
282 current->drawSurface = surface; in setCurrentDrawSurface()
289 return current->drawSurface; in getCurrentDrawSurface()
Dmain.h39 Surface *drawSurface; member
/external/angle/src/libANGLE/capture/
DFrameCapture_mock.cpp30 void FrameCaptureShared::onMakeCurrent(const gl::Context *context, const egl::Surface *drawSurface) in onMakeCurrent() argument
/external/deqp/modules/gles31/functional/
Des31fSeparateShaderTests.cpp1031 void drawSurface (Surface& dst,
1313 void SeparateShaderTest::drawSurface (Surface& dst, deUint32 seed) in drawSurface() function in deqp::gles31::Functional::__anon8142914b0111::SeparateShaderTest
1351 drawSurface(refSurface, drawSeed); in testPipelineRendering()
1356 drawSurface(pipelineSurface, drawSeed); in testPipelineRendering()
1382 drawSurface(pipelineSurface, drawSeed); in testCurrentProgPriority()
1386 drawSurface(refSurface, drawSeed); in testCurrentProgPriority()
1391 drawSurface(resultSurface, drawSeed); in testCurrentProgPriority()
1421 drawSurface(refSurface, drawSeed); in testActiveProgramUniform()
1454 drawSurface(resultSurface, drawSeed); in testActiveProgramUniform()
/external/angle/src/libANGLE/renderer/gl/egl/
DDisplayEGL.cpp575 egl::Surface *drawSurface, in makeCurrent() argument
582 if (drawSurface) in makeCurrent()
584 SurfaceEGL *drawSurfaceEGL = GetImplAs<SurfaceEGL>(drawSurface); in makeCurrent()
605 return DisplayGL::makeCurrent(display, drawSurface, readSurface, context); in makeCurrent()
DDisplayEGL.h81 egl::Surface *drawSurface,
/external/angle/src/libANGLE/renderer/null/
DDisplayNULL.h32 egl::Surface *drawSurface,
DDisplayNULL.cpp41 egl::Surface *drawSurface, in makeCurrent() argument
/external/angle/src/libANGLE/renderer/gl/wgl/
DDisplayWGL.cpp671 egl::Surface *drawSurface, in makeCurrent() argument
678 if (drawSurface) in makeCurrent()
680 SurfaceWGL *drawSurfaceWGL = GetImplAs<SurfaceWGL>(drawSurface); in makeCurrent()
708 return DisplayGL::makeCurrent(display, drawSurface, readSurface, context); in makeCurrent()
DDisplayWGL.h70 egl::Surface *drawSurface,
/external/angle/src/libANGLE/renderer/
DDisplayImpl.h75 egl::Surface *drawSurface,
/external/angle/src/libANGLE/renderer/gl/cgl/
DDisplayCGL.h51 egl::Surface *drawSurface,
/external/angle/src/libANGLE/renderer/gl/egl/gbm/
DDisplayGbm.h119 egl::Surface *drawSurface,
/external/angle/src/libANGLE/renderer/vulkan/
DDisplayVk.h78 egl::Surface *drawSurface,

12