Home
last modified time | relevance | path

Searched refs:m_egl (Results 1 – 20 of 20) sorted by relevance

/external/deqp/framework/egl/wrapper/
DeglwFuncPtrLibraryImpl.inl9 return m_egl.bindAPI(api);
14 return m_egl.bindTexImage(dpy, surface, buffer);
19 return m_egl.chooseConfig(dpy, attrib_list, configs, config_size, num_config);
24 return m_egl.clientWaitSync(dpy, sync, flags, timeout);
29 return m_egl.clientWaitSyncKHR(dpy, sync, flags, timeout);
34 return m_egl.copyBuffers(dpy, surface, target);
39 return m_egl.createContext(dpy, config, share_context, attrib_list);
44 return m_egl.createImage(dpy, ctx, target, buffer, attrib_list);
49 return m_egl.createImageKHR(dpy, ctx, target, buffer, attrib_list);
54 return m_egl.createPbufferFromClientBuffer(dpy, buftype, buffer, config, attrib_list);
[all …]
DeglwLibrary.cpp133 initCore(&m_egl, &loader); in DefaultLibrary()
136 if (m_egl.getProcAddress) in DefaultLibrary()
138 const ExtLoader loader(m_egl.getProcAddress); in DefaultLibrary()
139 initExtensions(&m_egl, &loader); in DefaultLibrary()
DeglwLibrary.hpp54 Functions m_egl; member in eglw::FuncPtrLibrary
/external/deqp/framework/egl/
DegluUnique.cpp34 : m_egl (egl) in UniqueDisplay()
42 m_egl.terminate(m_display); in ~UniqueDisplay()
51 : m_egl (egl) in UniqueSurface()
60 m_egl.destroySurface(m_display, m_surface); in ~UniqueSurface()
69 : m_egl (egl) in UniqueContext()
78 m_egl.destroyContext(m_display, m_context); in ~UniqueContext()
87 : m_egl (egl) in ScopedCurrentContext()
90 EGLU_CHECK_CALL(m_egl, makeCurrent(display, draw, read, context)); in ScopedCurrentContext()
95 m_egl.makeCurrent(m_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); in ~ScopedCurrentContext()
99 : m_egl (egl) in UniqueImage()
[all …]
DegluCallLogWrapper.inl11 eglw::EGLBoolean returnValue = m_egl.bindAPI(api);
21 eglw::EGLBoolean returnValue = m_egl.bindTexImage(dpy, surface, buffer);
31 …eglw::EGLBoolean returnValue = m_egl.chooseConfig(dpy, attrib_list, configs, config_size, num_conf…
46 eglw::EGLint returnValue = m_egl.clientWaitSync(dpy, sync, flags, timeout);
56 eglw::EGLint returnValue = m_egl.clientWaitSyncKHR(dpy, sync, flags, timeout);
66 eglw::EGLBoolean returnValue = m_egl.copyBuffers(dpy, surface, target);
76 eglw::EGLContext returnValue = m_egl.createContext(dpy, config, share_context, attrib_list);
86 eglw::EGLImage returnValue = m_egl.createImage(dpy, ctx, target, buffer, attrib_list);
96 eglw::EGLImageKHR returnValue = m_egl.createImageKHR(dpy, ctx, target, buffer, attrib_list);
106 …eglw::EGLSurface returnValue = m_egl.createPbufferFromClientBuffer(dpy, buftype, buffer, config, a…
[all …]
DegluUnique.hpp47 const eglw::Library& m_egl; member in eglu::UniqueDisplay
65 const eglw::Library& m_egl; member in eglu::UniqueSurface
84 const eglw::Library& m_egl; member in eglu::UniqueContext
100 const eglw::Library& m_egl; member in eglu::ScopedCurrentContext
114 const eglw::Library& m_egl; member in eglu::UniqueImage
DegluGLFunctionLoader.cpp33 : m_egl (egl) in GLFunctionLoader()
43 return (glw::GenericFuncType)m_egl.getProcAddress(name); in get()
DegluCallLogWrapper.hpp50 const eglw::Library& m_egl; member in eglu::CallLogWrapper
DegluGLFunctionLoader.hpp56 const eglw::Library& m_egl; member in eglu::GLFunctionLoader
DegluGLContextFactory.cpp100 : m_egl(egl) in GetProcFuncLoader()
106 return (glw::GenericFuncType)m_egl.getProcAddress(name); in get()
110 const Library& m_egl; member in eglu::__anon7752e3e30111::GetProcFuncLoader
DegluCallLogWrapper.cpp38 : m_egl (egl) in CallLogWrapper()
/external/deqp/modules/egl/
DteglThreadCleanUpTests.cpp62 : m_egl (egl) in Thread()
75 EGLU_CHECK_MSG(m_egl, "eglCreateContext"); in testContext()
76 m_egl.makeCurrent(m_display, m_surface, m_surface, context); in testContext()
77 EGLU_CHECK_MSG(m_egl, "eglMakeCurrent"); in testContext()
87 …const eglu::UniqueSurface surface (m_egl, m_display, m_egl.createPbufferSurface(m_display, m_confi… in testContext()
89 EGLU_CHECK_MSG(m_egl, "eglCreateContext"); in testContext()
90 m_egl.makeCurrent(m_display, *surface, *surface, context); in testContext()
91 EGLU_CHECK_MSG(m_egl, "eglMakeCurrent"); in testContext()
105 m_egl.bindAPI(EGL_OPENGL_ES_API); in run()
109 …const eglu::UniqueContext context (m_egl, m_display, m_egl.createContext(m_display, m_config, EGL_… in run()
[all …]
DteglImageFormatTests.cpp158 const Library& m_egl; member in deqp::egl::Image::ImageApi
165 : m_egl (egl) in ImageApi()
291 EGLU_CHECK_CALL(m_egl, getConfigAttrib(m_display, config, EGL_CONFIG_ID, &configId)); in GLES2ImageApi()
294 m_context = m_egl.createContext(m_display, config, EGL_NO_CONTEXT, attriblist); in GLES2ImageApi()
295 EGLU_CHECK_MSG(m_egl, "Failed to create GLES2 context"); in GLES2ImageApi()
298 EGLU_CHECK_MSG(m_egl, "Failed to make context current"); in GLES2ImageApi()
303 m_egl.makeCurrent(m_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); in ~GLES2ImageApi()
304 m_egl.destroyContext(m_display, m_context); in ~GLES2ImageApi()
311 …gles2Api.m_egl.makeCurrent(gles2Api.m_display, gles2Api.m_surface, gles2Api.m_surface, gles2Api.m_… in invoke()
318 de::UniquePtr<ClientBuffer> buffer (m_imgSource->createBuffer(api.m_egl, api.m_gl, &ref)); in invokeGLES2()
[all …]
DteglAndroidUtil.cpp172 const Library& m_egl; member in deqp::egl::Image::__anon05732c3c0111::AndroidNativeClientBuffer
177 : m_egl(egl) in AndroidNativeClientBuffer()
231 …return ((eglGetNativeClientBufferANDROIDFunc)m_egl.getProcAddress("eglGetNativeClientBufferANDROID… in get()
DteglColorClearCase.cpp282 : m_egl (egl) in ColorClearThread()
300 m_egl.makeCurrent(m_display, m_surface, m_surface, m_context); in run()
308 m_egl.makeCurrent(m_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); in run()
313 m_egl.releaseThread(); in run()
317 const Library& m_egl; member in deqp::egl::ColorClearThread
DteglRenderTests.cpp878 : m_egl (egl) in RenderTestThread()
897 EGLU_CHECK_CALL(m_egl, makeCurrent(m_display, m_surface, m_surface, m_context)); in run()
906 EGLU_CHECK_CALL(m_egl, makeCurrent(m_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT)); in run()
911 m_egl.releaseThread(); in run()
915 const Library& m_egl; member in deqp::egl::RenderTestThread
DteglRobustnessTests.cpp489 const Library& m_egl; member in deqp::egl::__anone786aa280111::RenderingContext
509 , m_egl (eglTestCtx.getLibrary()) in RenderingContext()
523 m_context = m_egl.createContext(m_display, m_config, sharedContext, m_attribList); in createContext()
524 EGLU_CHECK_MSG(m_egl, "eglCreateContext()"); in createContext()
532 m_egl.destroyContext(m_display, m_context); in destroyContext()
537 EGLU_CHECK_CALL(m_egl, makeCurrent(m_display, surface, surface, m_context)); in makeCurrent()
DteglGLES2SharedRenderingPerfTests.cpp730 const Library& m_egl; member in deqp::egl::__anon9858808f0111::TestThread
752 , m_egl (egl) in TestThread()
806 m_egl.releaseThread(); in run()
/external/deqp/framework/platform/surfaceless/
DtcuSurfacelessPlatform.cpp167 GetProcFuncLoader(const eglw::Library& egl): m_egl(egl) in GetProcFuncLoader()
173 return (glw::GenericFuncType)m_egl.getProcAddress(name); in get()
176 const eglw::Library& m_egl; member in tcu::surfaceless::GetProcFuncLoader
225 const eglw::DefaultLibrary m_egl; member in tcu::surfaceless::EglRenderContext
249 : m_egl("libEGL.so") in EglRenderContext()
280 m_eglDisplay = m_egl.getDisplay(NULL); in EglRenderContext()
281 EGLU_CHECK_MSG(m_egl, "eglGetDisplay()"); in EglRenderContext()
285 EGLU_CHECK_CALL(m_egl, initialize(m_eglDisplay, &eglMajorVersion, &eglMinorVersion)); in EglRenderContext()
401 EGLU_CHECK_CALL(m_egl, bindAPI(EGL_OPENGL_ES_API)); in EglRenderContext()
404 EGLU_CHECK_CALL(m_egl, bindAPI(EGL_OPENGL_API)); in EglRenderContext()
[all …]
/external/deqp/framework/platform/lnx/X11/
DtcuLnxX11EglDisplayFactory.cpp84 return (m_egl.copyBuffers)(dpy, surface, reinterpret_cast<EGLNativePixmapType*>(target)); in copyBuffers()
89 …return (m_egl.createPixmapSurface)(dpy, config, reinterpret_cast<EGLNativePixmapType*>(pixmap), at… in createPixmapSurface()
94 …return (m_egl.createWindowSurface)(dpy, config, reinterpret_cast<EGLNativeWindowType*>(win), attri… in createWindowSurface()
99 …return ((eglX11GetDisplayFunc)m_egl.getDisplay)(reinterpret_cast<EGLNativeDisplayType>(display_id)… in getDisplay()