Home
last modified time | relevance | path

Searched refs:EGL_OPENGL_ES2_BIT (Results 1 – 25 of 53) sorted by relevance

123

/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
DEglBase.java49 private static final int EGL_OPENGL_ES2_BIT = 4; field in EglBase
57 EGL10.EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
65 EGL10.EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
72 EGL10.EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
81 EGL10.EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
89 EGL10.EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
/external/deqp/modules/egl/
DteglColorClearTests.cpp87 CASE("gles2", "Color clears using GLES2", EGL_OPENGL_ES2_BIT, 1), in init()
95 … "Color clears using multiple GLES2 contexts to shared surface", EGL_OPENGL_ES2_BIT, 3… in init()
98 …or clears using multiple APIs to shared surface", EGL_OPENGL_ES_BIT|EGL_OPENGL_ES2_BIT, 1), in init()
99 …lears using multiple APIs to shared surface", EGL_OPENGL_ES_BIT|EGL_OPENGL_ES2_BIT|EGL_OPENGL_E… in init()
101 …CASE("gles2_vg", "Color clears using multiple APIs to shared surface", EGL_OPENGL_ES2_BIT|EGL… in init()
103 …lears using multiple APIs to shared surface", EGL_OPENGL_ES_BIT|EGL_OPENGL_ES2_BIT|EGL_OPENVG_B… in init()
DteglNegativeApiTests.cpp317 …if (getConfig(&es2OnlyConfig, FilterList() << renderable<EGL_OPENGL_ES2_BIT> << notRenderable<EGL_… in init()
336 …FilterList() << renderable<EGL_OPENGL_BIT> << notRenderable<EGL_OPENGL_ES_BIT|EGL_OPENGL_ES2_BIT>)) in init()
344 …FilterList() << renderable<EGL_OPENVG_BIT> << notRenderable<EGL_OPENGL_ES_BIT|EGL_OPENGL_ES2_BIT>)) in init()
371 …if (getConfig(&es2OnlyConfig, FilterList() << renderable<EGL_OPENGL_ES2_BIT> << notRenderable<EGL_… in init()
401 if (getConfig(&notES2Config, FilterList() << notRenderable<EGL_OPENGL_ES2_BIT>)) in init()
441 getConfig(&esConfig, FilterList() << renderable<EGL_OPENGL_ES2_BIT>); in init()
579 if (getConfig(&noEsConfig, FilterList() << notRenderable<EGL_OPENGL_ES_BIT|EGL_OPENGL_ES2_BIT>)) in init()
595 getConfig(&esConfig, FilterList() << renderable<EGL_OPENGL_ES2_BIT>); in init()
669 …bool gotConfig = getConfig(&config, FilterList() << renderable<EGL_OPENGL_ES2_BIT> << surface… in init()
855 if (getConfig(&config, FilterList() << renderable<EGL_OPENGL_ES2_BIT>)) in init()
[all …]
DteglRenderCase.cpp89 apiMask |= EGL_OPENGL_ES2_BIT; in getBuildClientAPIMask()
221 …const EGLint apis[] = { EGL_OPENGL_ES2_BIT, EGL_OPENGL_ES3_BIT_KHR, EGL_OPENGL_ES_BIT, EGL_OPEN… in executeForSurface()
242 case EGL_OPENGL_ES2_BIT: in executeForSurface()
320 if (m_apiMask & EGL_OPENGL_ES2_BIT) in executeForSurface()
324 …contexts.push_back(std::make_pair(EGL_OPENGL_ES2_BIT, egl.createContext(display, config.config, EG… in executeForSurface()
DteglRenderTests.cpp600 case EGL_OPENGL_ES2_BIT: return new GLES2Program(gl); in createProgram()
611 case EGL_OPENGL_ES2_BIT: drawGLES2(gl, program, drawOp); break; in draw()
622 case EGL_OPENGL_ES2_BIT: clearGLES2(gl, color, depth, stencil); break; in clear()
633 case EGL_OPENGL_ES2_BIT: readPixelsGLES2(gl, dst); break; in readPixels()
644 case EGL_OPENGL_ES2_BIT: in finish()
1077 EGL_OPENGL_ES2_BIT, in init()
1078 renderable<EGL_OPENGL_ES2_BIT>, in init()
1095 EGL_OPENGL_ES2_BIT, in init()
1096 renderable<EGL_OPENGL_ES2_BIT>, in init()
1109 EGL_OPENGL_ES2_BIT|EGL_OPENGL_ES3_BIT, in init()
[all …]
DteglMultiContextTests.cpp91 return (c.get(EGL_RENDERABLE_TYPE) & EGL_OPENGL_ES2_BIT) == EGL_OPENGL_ES2_BIT; in isES2Renderable()
DteglGetProcAddressTests.cpp80 case EGL_OPENGL_ES2_BIT: return FunctionNames(DE_LENGTH_OF_ARRAY(s_GLES20), s_GLES20); in getCoreFunctionNames()
309 …sCoreFunctionsCase (m_eglTestCtx, "gles2", "Test OpenGL ES 2 core functions", EGL_OPENGL_ES2_BIT)); in init()
DteglColorClearCase.cpp115 …case EGL_OPENGL_ES2_BIT: gles2::clear(func.gl, clear.x, clear.y, clear.width, clear.height, clear… in renderClear()
128 case EGL_OPENGL_ES2_BIT: gles2::finish(func.gl); break; in finish()
141 …case EGL_OPENGL_ES2_BIT: gles2::readPixels (func.gl, dst, 0, 0, dst.getWidth(), dst.getHeight());… in readPixels()
DteglCreateContextTests.cpp80 { "OpenGL ES 2", EGL_OPENGL_ES_API, EGL_OPENGL_ES2_BIT, es2Attrs }, in executeForConfig()
DteglCreateContextExtTests.cpp1033 case EGL_OPENGL_ES2_BIT: return renderable<EGL_OPENGL_ES2_BIT>; in getRenderableFilter()
1126 { "gles_20", "Create OpenGL ES 2.0 context", EGL_OPENGL_ES_API, EGL_OPENGL_ES2_BIT, in init()
1182 …nGL ES 2.0 context with EGL_EXT_create_context_robustness.", EGL_OPENGL_ES_API, EGL_OPENGL_ES2_BIT, in init()
DteglSurfacelessContextTests.cpp94 { "OpenGL ES 2", EGL_OPENGL_ES_API, EGL_OPENGL_ES2_BIT, es2Attrs }, in executeForConfig()
DteglQueryContextTests.cpp62 case EGL_OPENGL_ES2_BIT: return EGL_OPENGL_ES_API; in getClientTypeFromAPIBit()
77 case EGL_OPENGL_ES2_BIT: return 2; in getMinClientMajorVersion()
DteglNegativePartialUpdateTests.cpp92 return (c.get(EGL_RENDERABLE_TYPE) & EGL_OPENGL_ES2_BIT) == EGL_OPENGL_ES2_BIT; in isES2Renderable()
/external/skia/src/gpu/gl/command_buffer/
DSkCommandBufferGLContext.cpp28 #define EGL_OPENGL_ES2_BIT 0x0004 macro
154 : EGL_OPENGL_ES2_BIT, in SkCommandBufferGLContext()
176 EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, in SkCommandBufferGLContext()
/external/mesa3d/src/egl/main/
Deglcurrent.h39 EGL_OPENGL_ES2_BIT | \
Deglmisc.c139 if (dpy->ClientAPIs & EGL_OPENGL_ES2_BIT) in _eglUpdateAPIsString()
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/surfaceview/
DGdxEglConfigChooser.java28 private static final int EGL_OPENGL_ES2_BIT = 4; field in GdxEglConfigChooser
53 EGL10.EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, EGL10.EGL_NONE}; in GdxEglConfigChooser()
DGLSurfaceView20.java190 private static int EGL_OPENGL_ES2_BIT = 4; field in GLSurfaceView20.ConfigChooser
192 EGL10.EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, EGL10.EGL_NONE};
DGLSurfaceView20API18.java173 private static int EGL_OPENGL_ES2_BIT = 4; field in GLSurfaceView20API18.ConfigChooser
175 EGL10.EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, EGL10.EGL_NONE};
/external/webrtc/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
DViEAndroidGLES20.java124 private static int EGL_OPENGL_ES2_BIT = 4; field in ViEAndroidGLES20.ConfigChooser
130 EGL10.EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
/external/autotest/client/deps/glbench/src/
Degl_stuff.cc50 EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, in GetXVisual()
/external/deqp/framework/egl/
DegluStrUtil.inl253 tcu::Format::BitDesc(EGL_OPENGL_ES2_BIT, "EGL_OPENGL_ES2_BIT"),
DegluGLUtil.cpp68 case 2: return EGL_OPENGL_ES2_BIT; in apiRenderableType()
/external/skia/platform_tools/android/apps/visualbench/src/main/jni/
DSkOSWindow_AndroidNative.cpp49 EGL_OPENGL_ES2_BIT, in attach()
/external/skia/src/gpu/gl/angle/
DSkANGLEGLContext.cpp75 EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, in SkANGLEGLContext()

123