HomeSort by relevance Sort by last modified time
    Searched refs:egl (Results 251 - 275 of 666) sorted by null

<<11121314151617181920>>

  /external/deqp/modules/egl/
teglImageTests.cpp 2 * drawElements Quality Program EGL Module
21 * \brief EGL image tests.
84 namespace egl namespace in namespace:deqp
213 const Library& egl = m_eglTestCtx.getLibrary(); local
214 const EGLImageKHR image = egl.createImageKHR(dpy, context, source, 0, DE_NULL);
222 EGLConfig chooseConfig (const Library& egl, EGLDisplay display, ApiType apiType)
234 configs = eglu::chooseConfigs(egl, display, attribs);
240 TCU_THROW(NotSupportedError, "No compatible EGL configs found");
356 const Library& egl = m_eglTestCtx.getLibrary(); local
359 if (eglu::getVersion(egl, dpy) < eglu::Version(1, 5)
421 const Library& egl = m_eglTestCtx.getLibrary(); local
    [all...]
teglApiCase.cpp 2 * drawElements Quality Program EGL Module
33 namespace egl namespace in namespace:deqp
59 const Library& egl = m_eglTestCtx.getLibrary(); local
60 egl.terminate(m_display);
172 } // egl
teglCreateContextExtTests.cpp 2 * drawElements Quality Program EGL Module
74 namespace egl namespace in namespace:deqp
365 m_testCtx.getLog() << TestLog::Message << "EGL attrib list: { " << attribListString.str() << " }" << TestLog::EndMessage;
888 const Library& egl = m_eglTestCtx.getLibrary(); local
890 const EGLint surfaceTypes = eglu::getConfigAttribInt(egl, m_display, config, EGL_SURFACE_TYPE);
891 const EGLint configId = eglu::getConfigAttribInt(egl, m_display, config, EGL_CONFIG_ID);
902 eglu::UniqueSurface surface (egl, m_display, egl.createPbufferSurface(m_display, config, attribList));
903 EGLU_CHECK_MSG(egl, "eglCreatePbufferSurface");
912 eglu::UniqueSurface surface (egl, m_display, eglu::createWindowSurface(m_eglTestCtx.getNativeDisplay(), *window, m_display, config, (…)
949 const Library& egl = m_eglTestCtx.getLibrary(); local
    [all...]
teglGLES1RenderUtil.cpp 2 * drawElements Quality Program EGL Module
34 namespace egl namespace in namespace:deqp
85 } // egl
teglSimpleConfigCase.hpp 4 * drawElements Quality Program EGL Module
35 namespace egl namespace in namespace:deqp
79 } // egl
teglTestCase.cpp 2 * drawElements Quality Program EGL Module
21 * \brief EGL Test Case
40 namespace egl namespace in namespace:deqp
102 } // egl
teglTestCase.hpp 4 * drawElements Quality Program EGL Module
23 * \brief EGL Test Case
57 namespace egl namespace in namespace:deqp
105 } // egl
teglVGRenderUtil.cpp 2 * drawElements Quality Program EGL Module
34 namespace egl namespace in namespace:deqp
83 } // egl
  /frameworks/base/opengl/java/android/opengl/
EGLLogWrapper.java 22 import javax.microedition.khronos.egl.EGL;
23 import javax.microedition.khronos.egl.EGL10;
24 import javax.microedition.khronos.egl.EGL11;
25 import javax.microedition.khronos.egl.EGLConfig;
26 import javax.microedition.khronos.egl.EGLContext;
27 import javax.microedition.khronos.egl.EGLDisplay;
28 import javax.microedition.khronos.egl.EGLSurface;
38 public EGLLogWrapper(EGL egl, int configFlags, Writer log)
    [all...]
GLUtils.java 21 import javax.microedition.khronos.egl.EGL10;
22 import javax.microedition.khronos.egl.EGL11;
220 * Return a string for the EGL error code, or the hex representation
223 * @param error The EGL error to convert into a String.
225 * @return An error string corresponding to the EGL error code.
  /external/swiftshader/src/OpenGL/libEGL/
Surface.cpp 15 // Surface.cpp: Implements the egl::Surface class, representing a drawing surface
17 // Implements EGLSurface and related functionality. [EGL 1.4] section 2.2 page 3.
50 namespace egl namespace
138 egl::Image *Surface::getRenderTarget()
148 egl::Image *Surface::getDepthStencil()
230 void Surface::setBoundTexture(egl::Texture *texture)
235 egl::Texture *Surface::getBoundTexture() const
  /external/swiftshader/src/OpenGL/libGLES_CM/
Device.cpp 220 egl::Image *Device::createDepthStencilSurface(unsigned int width, unsigned int height, sw::Format format, int multiSampleDepth, bool discard)
253 egl::Image *surface = egl::Image::create(width, height, format, multiSampleDepth, lockable);
264 egl::Image *Device::createRenderTarget(unsigned int width, unsigned int height, sw::Format format, int multiSampleDepth, bool lockable)
272 egl::Image *surface = egl::Image::create(width, height, format, multiSampleDepth, lockable);
310 void Device::setRenderTarget(int index, egl::Image *renderTarget)
327 void Device::setDepthBuffer(egl::Image *depthBuffer)
349 void Device::setStencilBuffer(egl::Image *stencilBuffer)
423 bool depthStencil = egl::Image::isDepth(source->getInternalFormat()) || egl::Image::isStencil(source->getInternalFormat())
    [all...]
  /external/swiftshader/src/OpenGL/libGLESv2/
Device.cpp 252 egl::Image *Device::createDepthStencilSurface(unsigned int width, unsigned int height, sw::Format format, int multiSampleDepth, bool discard)
289 egl::Image *surface = egl::Image::create(width, height, format, multiSampleDepth, lockable);
300 egl::Image *Device::createRenderTarget(unsigned int width, unsigned int height, sw::Format format, int multiSampleDepth, bool lockable)
308 egl::Image *surface = egl::Image::create(width, height, format, multiSampleDepth, lockable);
366 void Device::setRenderTarget(int index, egl::Image *renderTarget)
383 void Device::setDepthBuffer(egl::Image *depthBuffer)
405 void Device::setStencilBuffer(egl::Image *stencilBuffer)
598 bool isDepth = (flags & Device::DEPTH_BUFFER) && egl::Image::isDepth(source->getInternalFormat())
    [all...]
  /frameworks/rs/driver/
rsdGL.h 21 #include <EGL/egl.h>
39 } egl; member in struct:RsdGLRec
  /cts/tests/camera/src/android/hardware/cts/
GLSurfaceViewCtsActivity.java 24 import javax.microedition.khronos.egl.EGLConfig;
  /cts/tests/tests/graphics/src/android/graphics/cts/
CameraGpuCtsActivity.java 27 import javax.microedition.khronos.egl.EGLConfig;
  /cts/tests/tests/opengl/src/android/opengl/cts/
NativeRendererOneColorBufferTest.java 26 import javax.microedition.khronos.egl.EGLConfig;
RendererTwoShaderTest.java 24 import javax.microedition.khronos.egl.EGLConfig;
  /cts/tests/vr/src/android/vr/cts/
RendererProtectedTexturesTest.java 20 import javax.microedition.khronos.egl.EGLConfig;
  /development/samples/OpenGL/HelloOpenGLES10/src/com/example/android/opengl/
MyGLRenderer.java 18 import javax.microedition.khronos.egl.EGLConfig;
  /external/deqp/android/cts/
Android.mk 38 LOCAL_COMPATIBILITY_SUPPORT_FILES += $(LOCAL_PATH)/nyc/egl-master.txt:nyc-egl-master.txt
  /external/deqp/framework/platform/lnx/wayland/
tcuLnxWayland.hpp 34 #include <wayland-egl.h>
  /external/drm_hwcomposer/
glworker.h 25 #include <EGL/egl.h>
26 #include <EGL/eglext.h>
  /external/skia/tools/fiddle/
egl_context.cpp 10 #include <EGL/egl.h>
32 // create_grcontext implementation for EGL.
67 driverinfo << "EGL " << major << "." << minor << "\n";
  /frameworks/av/cmds/screenrecord/
Overlay.h 28 #include <EGL/egl.h>
66 // This creates an EGL context and window surface, draws some informative
93 // Release EGL display, context, surface.
134 // EGL display / context / surface.

Completed in 561 milliseconds

<<11121314151617181920>>