/external/deqp/framework/egl/ |
egluUnique.cpp | 34 : m_egl (egl) 42 m_egl.terminate(m_display); 51 : m_egl (egl) 60 m_egl.destroySurface(m_display, m_surface); 69 : m_egl (egl) 78 m_egl.destroyContext(m_display, m_context); 87 : m_egl (egl) 90 EGLU_CHECK_CALL(m_egl, makeCurrent(display, draw, read, context)); 95 m_egl.makeCurrent(m_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); 99 : m_egl (egl [all...] |
egluCallLogWrapper.hpp | 50 const eglw::Library& m_egl; member in class:eglu::CallLogWrapper
|
egluUnique.hpp | 47 const eglw::Library& m_egl; member in class:eglu::UniqueDisplay 65 const eglw::Library& m_egl; member in class:eglu::UniqueSurface 84 const eglw::Library& m_egl; member in class:eglu::UniqueContext 100 const eglw::Library& m_egl; member in class:eglu::ScopedCurrentContext 114 const eglw::Library& m_egl; member in class:eglu::UniqueImage
|
egluCallLogWrapper.inl | 11 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_config); 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, attrib_list) [all...] |
egluGLFunctionLoader.cpp | 33 : m_egl (egl) 43 return (glw::GenericFuncType)m_egl.getProcAddress(name);
|
egluGLFunctionLoader.hpp | 56 const eglw::Library& m_egl; member in class:eglu::GLFunctionLoader
|
egluGLContextFactory.cpp | 97 : m_egl(egl) 103 return (glw::GenericFuncType)m_egl.getProcAddress(name); 107 const Library& m_egl; member in class:eglu::__anon10566::GetProcFuncLoader
|
egluCallLogWrapper.cpp | 38 : m_egl (egl)
|
/external/deqp/framework/egl/wrapper/ |
eglwFuncPtrLibraryImpl.inl | 9 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...] |
eglwLibrary.hpp | 54 Functions m_egl; member in class:eglw::FuncPtrLibrary
|
eglwLibrary.cpp | 133 initCore(&m_egl, &loader); 136 if (m_egl.getProcAddress) 138 const ExtLoader loader(m_egl.getProcAddress); 139 initExtensions(&m_egl, &loader);
|
/external/deqp/framework/platform/X11/ |
tcuX11EglPlatform.cpp | 80 return ((eglX11CopyBuffersFunc)m_egl.copyBuffers)(dpy, surface, reinterpret_cast<EGLNativePixmapType>(target)); 85 return ((eglX11CreatePixmapSurfaceFunc)m_egl.createPixmapSurface)(dpy, config, reinterpret_cast<EGLNativePixmapType>(pixmap), attrib_list); 90 return ((eglX11CreateWindowSurfaceFunc)m_egl.createWindowSurface)(dpy, config, reinterpret_cast<EGLNativeWindowType>(win), attrib_list); 95 return ((eglX11GetDisplayFunc)m_egl.getDisplay)(reinterpret_cast<EGLNativeDisplayType>(display_id));
|
/external/deqp/modules/egl/ |
teglImageFormatTests.cpp | 158 const Library& m_egl; member in class:deqp::egl::Image::ImageApi 165 : m_egl (egl) 291 EGLU_CHECK_CALL(m_egl, getConfigAttrib(m_display, config, EGL_CONFIG_ID, &configId)); 294 m_context = m_egl.createContext(m_display, config, EGL_NO_CONTEXT, attriblist); 295 EGLU_CHECK_MSG(m_egl, "Failed to create GLES2 context"); 298 EGLU_CHECK_MSG(m_egl, "Failed to make context current"); 303 m_egl.makeCurrent(m_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); 304 m_egl.destroyContext(m_display, m_context); 311 gles2Api.m_egl.makeCurrent(gles2Api.m_display, gles2Api.m_surface, gles2Api.m_surface, gles2Api.m_context); 325 const EGLImageKHR image = source.createImage(m_egl, m_display, m_context, buffer.get()) [all...] |
teglColorClearCase.cpp | 281 : m_egl (egl) 299 m_egl.makeCurrent(m_display, m_surface, m_surface, m_context); 307 m_egl.makeCurrent(m_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); 315 const Library& m_egl; member in class:deqp::egl::ColorClearThread
|
teglRenderTests.cpp | 838 : m_egl (egl) 857 EGLU_CHECK_CALL(m_egl, makeCurrent(m_display, m_surface, m_surface, m_context)); 866 EGLU_CHECK_CALL(m_egl, makeCurrent(m_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT)); 874 const Library& m_egl; member in class:deqp::egl::RenderTestThread [all...] |