Home
last modified time | relevance | path

Searched refs:m_egl (Results 1 – 15 of 15) 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::__anon5f76d0480111::GetProcFuncLoader
DegluCallLogWrapper.cpp38 : m_egl (egl) in CallLogWrapper()
/external/deqp/framework/platform/X11/
DtcuX11EglPlatform.cpp80 …return ((eglX11CopyBuffersFunc)m_egl.copyBuffers)(dpy, surface, reinterpret_cast<EGLNativePixmapTy… in copyBuffers()
85 …return ((eglX11CreatePixmapSurfaceFunc)m_egl.createPixmapSurface)(dpy, config, reinterpret_cast<EG… in createPixmapSurface()
90 …return ((eglX11CreateWindowSurfaceFunc)m_egl.createWindowSurface)(dpy, config, reinterpret_cast<EG… in createWindowSurface()
95 …return ((eglX11GetDisplayFunc)m_egl.getDisplay)(reinterpret_cast<EGLNativeDisplayType>(display_id)… in getDisplay()
/external/deqp/modules/egl/
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.cpp281 : m_egl (egl) in ColorClearThread()
299 m_egl.makeCurrent(m_display, m_surface, m_surface, m_context); in run()
307 m_egl.makeCurrent(m_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); in run()
315 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