HomeSort by relevance Sort by last modified time
    Searched refs:EGL_OPENGL_ES_BIT (Results 1 - 25 of 48) sorted by null

1 2

  /external/deqp/modules/egl/
teglColorClearTests.cpp 86 CASE("gles1", "Color clears using GLES1", EGL_OPENGL_ES_BIT, 1),
94 CASE("gles1", "Color clears using multiple GLES1 contexts to shared surface", EGL_OPENGL_ES_BIT, 3),
98 CASE("gles1_gles2", "Color clears using multiple APIs to shared surface", EGL_OPENGL_ES_BIT|EGL_OPENGL_ES2_BIT, 1),
99 CASE("gles1_gles2_gles3", "Color clears using multiple APIs to shared surface", EGL_OPENGL_ES_BIT|EGL_OPENGL_ES2_BIT|EGL_OPENGL_ES3_BIT, 1),
100 CASE("gles1_vg", "Color clears using multiple APIs to shared surface", EGL_OPENGL_ES_BIT|EGL_OPENVG_BIT, 1),
103 CASE("gles1_gles2_vg", "Color clears using multiple APIs to shared surface", EGL_OPENGL_ES_BIT|EGL_OPENGL_ES2_BIT|EGL_OPENVG_BIT, 1)
teglRenderCase.cpp 94 apiMask |= EGL_OPENGL_ES_BIT;
221 const EGLint apis[] = { EGL_OPENGL_ES2_BIT, EGL_OPENGL_ES3_BIT_KHR, EGL_OPENGL_ES_BIT, EGL_OPENVG_BIT };
256 case EGL_OPENGL_ES_BIT:
334 if (m_apiMask & EGL_OPENGL_ES_BIT)
338 contexts.push_back(std::make_pair(EGL_OPENGL_ES_BIT, egl.createContext(display, config.config, EGL_NO_CONTEXT, &attribs[0])));
teglGetProcAddressTests.cpp 79 case EGL_OPENGL_ES_BIT: return FunctionNames(DE_LENGTH_OF_ARRAY(s_GLES10), s_GLES10);
308 coreFuncGroup->addChild(new GetProcAddressCoreFunctionsCase (m_eglTestCtx, "gles", "Test OpenGL ES core functions", EGL_OPENGL_ES_BIT));
teglNegativeApiTests.cpp 130 static const eglu::ConfigFilter s_renderAPIFilters[] = { renderable<EGL_OPENGL_BIT>, renderable<EGL_OPENGL_ES_BIT>, renderable<EGL_OPENVG_BIT> };
315 if (getConfig(&es1OnlyConfig, FilterList() << renderable<EGL_OPENGL_ES_BIT> << notRenderable<EGL_OPENGL_BIT>))
342 if (getConfig(&glOnlyConfig, FilterList() << renderable<EGL_OPENGL_BIT> << notRenderable<EGL_OPENGL_ES_BIT|EGL_OPENGL_ES2_BIT>))
350 if (getConfig(&vgOnlyConfig, FilterList() << renderable<EGL_OPENVG_BIT> << notRenderable<EGL_OPENGL_ES_BIT|EGL_OPENGL_ES2_BIT>))
369 if (getConfig(&es1OnlyConfig, FilterList() << renderable<EGL_OPENGL_ES_BIT> << notRenderable<EGL_OPENVG_BIT>))
387 log << TestLog::Section("Test4", "EGL_BAD_CONFIG or EGL_BAD_MATCH is generated if OpenGL ES 1.x context is requested and EGL_RENDERABLE_TYPE attribute of config does not contain EGL_OPENGL_ES_BIT");
392 if (getConfig(&notES1Config, FilterList() << notRenderable<EGL_OPENGL_ES_BIT>))
470 gotConfig = getConfig(&esConfig, FilterList() << renderable<EGL_OPENGL_ES_BIT>) ||
609 if (getConfig(&noEsConfig, FilterList() << notRenderable<EGL_OPENGL_ES_BIT|EGL_OPENGL_ES2_BIT>))
624 bool gotEsConfig = getConfig(&esConfig, FilterList() << renderable<EGL_OPENGL_ES_BIT>) ||
    [all...]
teglSurfacelessContextTests.cpp 93 { "OpenGL ES 1", EGL_OPENGL_ES_API, EGL_OPENGL_ES_BIT, es1Attrs },
teglChooseConfigTests.cpp 277 { EGL_CONFORMANT, EGL_OPENGL_ES_BIT },
278 { EGL_RENDERABLE_TYPE, EGL_OPENGL_ES_BIT },
280 //{ EGL_CONFORMANT, EGL_OPENGL_BIT | EGL_OPENGL_ES_BIT | EGL_OPENGL_ES2_BIT | EGL_OPENVG_BIT },
281 //{ EGL_RENDERABLE_TYPE, EGL_OPENGL_BIT | EGL_OPENGL_ES_BIT | EGL_OPENGL_ES2_BIT | EGL_OPENVG_BIT },
394 api |= rnd.getBool() ? EGL_OPENGL_ES_BIT : 0;
teglColorClearCase.cpp 114 case EGL_OPENGL_ES_BIT: gles1::clear(clear.x, clear.y, clear.width, clear.height, clear.color.toVec()); break;
127 case EGL_OPENGL_ES_BIT: gles1::finish(); break;
140 case EGL_OPENGL_ES_BIT: gles1::readPixels (dst, 0, 0, dst.getWidth(), dst.getHeight()); break;
teglQueryContextTests.cpp 61 case EGL_OPENGL_ES_BIT: return EGL_OPENGL_ES_API;
76 case EGL_OPENGL_ES_BIT: return 1;
teglCreateContextTests.cpp 58 { "OpenGL ES 1", EGL_OPENGL_ES_API, EGL_OPENGL_ES_BIT, true, s_es1Attrs },
  /cts/tests/tests/opengl/src/android/opengl/cts/
EglConfigTest.java 44 private static final int EGL_OPENGL_ES_BIT = 0x1;
60 int[] configIds = getEglConfigIds(EGL_OPENGL_ES_BIT);
OpenGlEsVersionTest.java 59 private static final int EGL_OPENGL_ES_BIT = 0x0001;
281 } else if ((value[0] & EGL_OPENGL_ES_BIT) == EGL_OPENGL_ES_BIT) {
WrapperTest.java 248 renderableType = EGL14.EGL_OPENGL_ES_BIT;
  /external/mesa3d/src/egl/main/
eglcurrent.h 42 (EGL_OPENGL_ES_BIT | \
eglconfig.c 218 EGL_OPENGL_ES_BIT },
336 mask = EGL_OPENGL_ES_BIT |
eglcontext.c 54 bit = EGL_OPENGL_ES_BIT;
  /frameworks/native/opengl/tools/glgen/stubs/egl/
EGL14Header.java-if 104 public static final int EGL_OPENGL_ES_BIT = 0x0001;
  /external/deqp/framework/egl/
egluStrUtil.inl 290 tcu::Format::BitDesc(EGL_OPENGL_ES_BIT, "EGL_OPENGL_ES_BIT"),
egluGLUtil.cpp 67 case 1: return EGL_OPENGL_ES_BIT;
  /cts/tests/framework/base/activitymanager/src/android/server/am/
ActivityManagerGetConfigTests.java 209 final int EGL_OPENGL_ES_BIT = 0x0001;
212 if ((attrib[0] & EGL_OPENGL_ES_BIT) != 0) {
  /external/swiftshader/src/OpenGL/libEGL/
Config.cpp 124 mConformant = EGL_OPENGL_ES_BIT | EGL_OPENGL_ES2_BIT | EGL_OPENGL_ES3_BIT;
181 mRenderableType = EGL_OPENGL_ES_BIT | EGL_OPENGL_ES2_BIT | EGL_OPENGL_ES3_BIT;
  /frameworks/base/opengl/java/android/opengl/
EGL14.java 104 public static final int EGL_OPENGL_ES_BIT = 0x0001;
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
egl.cpp 279 attribs[i + 1] |= EGL_OPENGL_ES_BIT;
316 *value = EGL_OPENGL_ES_BIT | EGL_OPENGL_ES2_BIT;
  /frameworks/native/services/surfaceflinger/RenderEngine/
RenderEngine.cpp 74 } else if (renderableType & EGL_OPENGL_ES_BIT) {
562 err = selectEGLConfig(display, format, EGL_OPENGL_ES_BIT, &config);
  /device/generic/goldfish-opengl/system/include/EGL/
egl.h 155 #define EGL_OPENGL_ES_BIT 0x0001 /* EGL_RENDERABLE_TYPE mask bits */
  /external/swiftshader/third_party/PowerVR_SDK/Builds/Include/EGL/
egl.h 156 #define EGL_OPENGL_ES_BIT 0x0001 /* EGL_RENDERABLE_TYPE mask bits */

Completed in 597 milliseconds

1 2