Home
last modified time | relevance | path

Searched refs:m_egl (Results 1 – 17 of 17) 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.cpp97 : m_egl(egl) in GetProcFuncLoader()
103 return (glw::GenericFuncType)m_egl.getProcAddress(name); in get()
107 const Library& m_egl; member in eglu::__anona2d5bafb0111::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()
325 const EGLImageKHR image = source.createImage(m_egl, m_display, m_context, buffer.get()); in createImage()
[all …]
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()
316 const Library& m_egl; member in deqp::egl::ColorClearThread
DteglRenderTests.cpp838 : m_egl (egl) in RenderTestThread()
857 EGLU_CHECK_CALL(m_egl, makeCurrent(m_display, m_surface, m_surface, m_context)); in run()
866 EGLU_CHECK_CALL(m_egl, makeCurrent(m_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT)); in run()
874 const Library& m_egl; member in deqp::egl::RenderTestThread
DteglRobustnessTests.cpp489 const Library& m_egl; member in deqp::egl::__anon892b18400111::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()
/external/deqp/framework/platform/lnx/X11/
DtcuLnxX11EglDisplayFactory.cpp84 …return ((eglX11CopyBuffersFunc)m_egl.copyBuffers)(dpy, surface, reinterpret_cast<EGLNativePixmapTy… in copyBuffers()
89 …return ((eglX11CreatePixmapSurfaceFunc)m_egl.createPixmapSurface)(dpy, config, reinterpret_cast<EG… in createPixmapSurface()
94 …return ((eglX11CreateWindowSurfaceFunc)m_egl.createWindowSurface)(dpy, config, reinterpret_cast<EG… in createWindowSurface()
99 …return ((eglX11GetDisplayFunc)m_egl.getDisplay)(reinterpret_cast<EGLNativeDisplayType>(display_id)… in getDisplay()