Searched refs:eglChooseConfig (Results 1 - 25 of 38) sorted by relevance

12

/external/deqp/framework/egl/wrapper/
H A DeglwStaticLibrary14.inl8 { "eglChooseConfig", (deFunctionPtr)eglChooseConfig },
H A DeglwStaticLibrary15.inl8 { "eglChooseConfig", (deFunctionPtr)eglChooseConfig },
H A DeglwApi.inl8 #define eglChooseConfig eglwChooseConfig
/external/autotest/client/deps/glbench/src/
H A Degl_stuff.cc70 eglChooseConfig(display_, attribs, &config_, 1, &num_configs);
/external/skia/tools/viewer/sk_app/android/
H A DGLWindowContext_android.cpp84 SkAssertResult(eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs));
/external/swiftshader/third_party/PowerVR_SDK/Shell/API/KEGL/
H A DPVRShellAPI.cpp522 if(!eglChooseConfig(m_EGLDisplay, conflist, &conf, 1, &num_config) || num_config != 1)
639 if(!eglChooseConfig(m_EGLDisplay, conflist, NULL, 0, &i32Total_num_configs) || i32Total_num_configs == 0)
649 if(!eglChooseConfig(m_EGLDisplay, conflist, pConfigs, i32Total_num_configs, &num_config))
689 if(!eglChooseConfig(m_EGLDisplay, conflist, &conf, 1, &num_config) || num_config != 1)
/external/autotest/client/site_tests/graphics_GLAPICheck/src/
H A Dgles_APICheck.cc63 #define eglChooseConfig FP_eglChooseConfig macro
127 rt &= LoadDLFunction(&tmp, "eglChooseConfig", *handle_egl);
204 rt_code = eglChooseConfig(*egl_display, config_attribs,
207 printf("ERROR: eglChooseConfig failed\n");
/external/webrtc/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
H A DViEAndroidGLES20.java138 egl.eglChooseConfig(display, s_configAttribs2, null, 0, num_config);
148 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
/external/skia/tools/gpu/gl/angle/
H A DGLTestContext_angle.cpp131 eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs);
/external/skia/tools/gpu/gl/egl/
H A DCreatePlatformGLTestContext_egl.cpp138 if (!eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs)) {
139 SkDebugf("eglChooseConfig failed. EGL Error: 0x%08x\n", eglGetError());
/external/swiftshader/src/OpenGL/libEGL/
H A DlibEGL.hpp34 EGLBoolean (*eglChooseConfig)(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config); member in class:LibEGLexports
H A Dmain.cpp400 EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config) function
594 this->eglChooseConfig = egl::ChooseConfig;
/external/swiftshader/third_party/PowerVR_SDK/Examples/Beginner/01_HelloAPI/OGLES2/
H A DOGLES2HelloAPI_Windows.cpp258 eglChooseConfig provides a list of all available configurations
264 if (!eglChooseConfig(eglDisplay, pi32ConfigAttribs, &eglConfig, 1, &iConfigs) || (iConfigs != 1))
266 MessageBox(0, _T("eglChooseConfig() failed."), _T("Error"), MB_OK|MB_ICONEXCLAMATION);
H A DOGLES2HelloAPI_OSX.mm172 eglChooseConfig is provided by EGL to provide an easy way to select an appropriate configuration. It takes in the capabilities
175 http://www.khronos.org/registry/egl/sdk/docs/man/xhtml/eglChooseConfig.html
181 if (!eglChooseConfig(eglDisplay, configurationAttributes, &eglConfig, 1, &configsReturned) || (configsReturned != 1))
H A DOGLES2HelloAPI_LinuxX11.cpp272 eglChooseConfig is provided by EGL to provide an easy way to select an appropriate configuration. It takes in the capabilities
275 http://www.khronos.org/registry/egl/sdk/docs/man/xhtml/eglChooseConfig.html
281 if (!eglChooseConfig(eglDisplay, configurationAttributes, &eglConfig, 1, &configsReturned) || (configsReturned != 1))
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
H A DEglBase10.java279 if (!egl.eglChooseConfig(
H A DEglBase14.java234 if (!EGL14.eglChooseConfig(
/external/webrtc/webrtc/modules/audio_processing/test/android/apmtest/jni/
H A Dmain.c91 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
/external/deqp/framework/egl/
H A DegluCallLogWrapperApi.inl8 eglw::EGLBoolean eglChooseConfig (eglw::EGLDisplay dpy, const eglw::EGLint *attrib_list, eglw::EGLConfig *configs, eglw::EGLint config_size, eglw::EGLint *num_config);
/external/skia/src/views/win/
H A DSkOSWindow_win.cpp510 if (eglChooseConfig(display, msaaConfigAttribList, eglConfig, 1, &numConfigs)) {
516 if (!eglChooseConfig(display, configAttribList, eglConfig, 1, &numConfigs)) {
/external/deqp/modules/egl/
H A DteglNegativeApiTests.cpp250 TEGL_ADD_API_CASE(choose_config, "eglChooseConfig() negative tests",
259 expectFalse(eglChooseConfig(EGL_NO_DISPLAY, s_emptyAttribList, &configs[0], DE_LENGTH_OF_ARRAY(configs), &numConfigs));
262 expectFalse(eglChooseConfig((EGLDisplay)-1, s_emptyAttribList, &configs[0], DE_LENGTH_OF_ARRAY(configs), &numConfigs));
271 expectFalse(eglChooseConfig(display, s_invalidChooseConfigAttribLists[ndx], &configs[0], DE_LENGTH_OF_ARRAY(configs), &numConfigs));
279 expectFalse(eglChooseConfig(display, s_emptyAttribList, &configs[0], DE_LENGTH_OF_ARRAY(configs), DE_NULL));
/external/mesa3d/include/EGL/
H A Degl.h259 EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list,
/external/swiftshader/third_party/PowerVR_SDK/Builds/Include/EGL/
H A Degl.h260 EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list,
/external/swiftshader/include/EGL/
H A Degl.h121 EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config);
/external/replicaisland/src/com/replica/replicaisland/
H A DGLSurfaceView.java758 * {@link EGL10#eglChooseConfig} and iterating through the results. Please consult the
759 * EGL specification available from The Khronos Group to learn how to call eglChooseConfig.
775 if (!egl.eglChooseConfig(display, mConfigSpec, null, 0,
777 throw new IllegalArgumentException("eglChooseConfig failed");
788 if (!egl.eglChooseConfig(display, mConfigSpec, configs, numConfigs,
790 throw new IllegalArgumentException("eglChooseConfig#2 failed");

Completed in 577 milliseconds

12