Searched refs:egl (Results 1 - 25 of 242) sorted by relevance

12345678910

/external/deqp/scripts/
H A Dgen_egl.py23 import egl namespace
26 egl.gen()
/external/swiftshader/src/OpenGL/common/
H A DSurface.hpp23 #include <EGL/egl.h>
25 namespace egl namespace
40 virtual egl::Image *getRenderTarget() = 0;
41 virtual egl::Image *getDepthStencil() = 0;
47 virtual void setBoundTexture(egl::Texture *texture) = 0;
/external/mesa3d/src/egl/
H A DSConscript12 '#/src/egl/main',
27 egl = env.SharedLibrary(
32 egl = env.InstallSharedLibrary(egl, version=(1, 0, 0))
34 env.Alias('egl', egl)
/external/deqp/framework/egl/wrapper/
H A DeglwImplExt.inl4 * Generated from Khronos EGL API description (egl.xml) revision 13a26984991216cbf9a44fbf390f95dc05b5493a.
9 const eglw::Library* egl = eglw::getCurrentThreadLibrary();
10 if (!egl)
12 return egl->clientWaitSyncKHR(dpy, sync, flags, timeout);
17 const eglw::Library* egl = eglw::getCurrentThreadLibrary();
18 if (!egl)
20 return egl->createImageKHR(dpy, ctx, target, buffer, attrib_list);
25 const eglw::Library* egl = eglw::getCurrentThreadLibrary();
26 if (!egl)
28 return egl
[all...]
H A DeglwImpl.inl4 * Generated from Khronos EGL API description (egl.xml) revision 13a26984991216cbf9a44fbf390f95dc05b5493a.
9 const eglw::Library* egl = eglw::getCurrentThreadLibrary();
10 if (!egl)
12 return egl->bindAPI(api);
17 const eglw::Library* egl = eglw::getCurrentThreadLibrary();
18 if (!egl)
20 return egl->bindTexImage(dpy, surface, buffer);
25 const eglw::Library* egl = eglw::getCurrentThreadLibrary();
26 if (!egl)
28 return egl
[all...]
H A DeglwWrapper.hpp33 void setCurrentThreadLibrary (const eglw::Library* egl);
H A DeglwWrapper.cpp31 void setCurrentThreadLibrary (const eglw::Library* egl) argument
33 s_library = egl;
/external/deqp/modules/egl/
H A DteglGetFrameTimestampsTests.hpp31 namespace egl namespace in namespace:deqp
36 } // egl
H A DteglMultiContextTests.hpp31 namespace egl namespace in namespace:deqp
36 } // egl
H A DteglRobustnessTests.hpp31 namespace egl namespace in namespace:deqp
36 } // egl
H A DteglThreadCleanUpTests.hpp31 namespace egl namespace in namespace:deqp
36 } // egl
H A DteglClientExtensionTests.hpp31 namespace egl namespace in namespace:deqp
41 } // egl
H A DteglGLES2SharedRenderingPerfTests.hpp31 namespace egl namespace in namespace:deqp
41 } // egl
H A DteglGLES2SharingTests.hpp31 namespace egl namespace in namespace:deqp
42 } // egl
H A DteglGLES2SharingThreadedTests.hpp32 namespace egl namespace in namespace:deqp
42 } // egl
H A DteglMakeCurrentPerfTests.hpp31 namespace egl namespace in namespace:deqp
41 } // egl
H A DteglMemoryStressTests.hpp31 namespace egl namespace in namespace:deqp
41 } // egl
H A DteglMultiThreadTests.hpp31 namespace egl namespace in namespace:deqp
41 } // egl
H A DteglNativeColorMappingTests.hpp31 namespace egl namespace in namespace:deqp
41 } // egl
H A DteglNativeCoordMappingTests.hpp31 namespace egl namespace in namespace:deqp
41 } // egl
H A DteglSurfacelessContextTests.hpp31 namespace egl namespace in namespace:deqp
41 } // egl
/external/mesa3d/include/GLES/
H A Degl.h2 * Skeleton egl.h to provide compatibility for early GLES 1.0
4 * in egl.h leading applications to include only egl.h
12 #include <EGL/egl.h>
/external/swiftshader/third_party/PowerVR_SDK/Builds/Include/GLES/
H A Degl.h2 * Skeleton egl.h to provide compatibility for early GLES 1.0
4 * in egl.h leading applications to include only egl.h
12 #include <EGL/egl.h>
/external/deqp/framework/egl/
H A DegluConfigInfo.cpp87 void queryCoreConfigInfo (const Library& egl, EGLDisplay display, EGLConfig config, ConfigInfo* dst) argument
89 egl.getConfigAttrib(display, config, EGL_BUFFER_SIZE, &dst->bufferSize);
90 egl.getConfigAttrib(display, config, EGL_RED_SIZE, &dst->redSize);
91 egl.getConfigAttrib(display, config, EGL_GREEN_SIZE, &dst->greenSize);
92 egl.getConfigAttrib(display, config, EGL_BLUE_SIZE, &dst->blueSize);
93 egl.getConfigAttrib(display, config, EGL_LUMINANCE_SIZE, &dst->luminanceSize);
94 egl.getConfigAttrib(display, config, EGL_ALPHA_SIZE, &dst->alphaSize);
95 egl.getConfigAttrib(display, config, EGL_ALPHA_MASK_SIZE, &dst->alphaMaskSize);
96 egl.getConfigAttrib(display, config, EGL_BIND_TO_TEXTURE_RGB, (EGLint*)&dst->bindToTextureRGB);
97 egl
123 queryExtConfigInfo(const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLConfig config, ConfigInfo* dst) argument
[all...]
H A DegluUnique.cpp33 UniqueDisplay::UniqueDisplay (const Library& egl, EGLDisplay display) argument
34 : m_egl (egl)
50 UniqueSurface::UniqueSurface (const Library& egl, EGLDisplay display, EGLSurface surface) argument
51 : m_egl (egl)
68 UniqueContext::UniqueContext (const Library& egl, EGLDisplay display, EGLContext context) argument
69 : m_egl (egl)
86 ScopedCurrentContext::ScopedCurrentContext (const Library& egl, EGLDisplay display, EGLSurface draw, EGLSurface read, EGLContext context) argument
87 : m_egl (egl)
98 UniqueImage::UniqueImage (const Library& egl, EGLDisplay display, EGLImage image) argument
99 : m_egl (egl)
[all...]

Completed in 305 milliseconds

12345678910