/frameworks/base/opengl/libs/EGL/ |
egl_entries.in | 13 EGL_ENTRY(EGLContext, eglCreateContext, EGLDisplay, EGLConfig, EGLContext, const EGLint *)
|
/development/ndk/platforms/android-4/samples/san-angeles/jni/ |
importgl.h | 67 FNDEF(EGLContext, eglCreateContext, (EGLDisplay dpy, EGLConfig config, EGLContext share_list, const EGLint *attrib_list)); 119 #define eglCreateContext FNPTR(eglCreateContext)
|
importgl.c | 109 IMPORT_FUNC(eglCreateContext);
|
app-linux.c | 134 sEglContext = eglCreateContext(sEglDisplay, sEglConfig, NULL, NULL);
|
app-win32.c | 135 sEglContext = eglCreateContext(sEglDisplay, sEglConfig, NULL, NULL);
|
/frameworks/base/opengl/tests/gl2_basic/ |
gl2_basic.cpp | 320 context = eglCreateContext(dpy, myConfig, EGL_NO_CONTEXT, context_attribs); 321 checkEglError("eglCreateContext"); 323 printf("eglCreateContext failed\n");
|
/frameworks/base/opengl/tests/gl2_jni/src/com/android/gl2jni/ |
GL2JNIView.java | 82 checkEglError("Before eglCreateContext", egl); 84 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list); 85 checkEglError("After eglCreateContext", egl);
|
/frameworks/base/opengl/tests/gldual/src/com/android/gldual/ |
GLDualGL2View.java | 85 checkEglError("Before eglCreateContext", egl); 87 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list); 88 checkEglError("After eglCreateContext", egl);
|
/frameworks/base/opengl/tests/linetex/ |
linetex.cpp | 62 context = eglCreateContext(dpy, config, NULL, NULL);
|
/development/ndk/platforms/android-9/arch-arm/lib/ |
libEGL.so | |
/frameworks/base/opengl/tests/angeles/ |
app-linux.cpp | 155 context = eglCreateContext(dpy, config, NULL, NULL); 156 egl_error("eglCreateContext");
|
/frameworks/base/opengl/tests/tritex/ |
tritex.cpp | 153 if ( (eglContext = eglCreateContext(eglDisplay, myConfig, 0, 0)) == EGL_NO_CONTEXT )
155 printf("eglCreateContext failed\n");
|
/development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/ |
GL2JNIView.java | 114 checkEglError("Before eglCreateContext", egl); 116 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list); 117 checkEglError("After eglCreateContext", egl);
|
/external/webkit/WebCore/platform/graphics/openvg/ |
EGLDisplayOpenVG.cpp | 226 EGLContext context = eglCreateContext(m_display, config, EGL_NO_CONTEXT, 0); 291 // otherwise eglCreateContext() would fail with EGL_BAD_MATCH for shared 423 EGLContext context = eglCreateContext(m_display, config, m_sharedPlatformSurface->eglContext(), 0);
|
/frameworks/base/opengl/java/android/opengl/ |
EGLLogWrapper.java | 78 public EGLContext eglCreateContext(EGLDisplay display, EGLConfig config, 80 begin("eglCreateContext"); 87 EGLContext result = mEgl10.eglCreateContext(display, config,
|
/frameworks/base/opengl/tests/fillrate/ |
fillrate.cpp | 61 context = eglCreateContext(dpy, config, NULL, NULL);
|
/frameworks/base/opengl/tests/filter/ |
filter.cpp | 62 context = eglCreateContext(dpy, config, NULL, NULL);
|
/frameworks/base/opengl/tests/swapinterval/ |
swapinterval.cpp | 78 context = eglCreateContext(dpy, config, NULL, NULL);
|
/frameworks/base/opengl/tests/textures/ |
textures.cpp | 58 context = eglCreateContext(dpy, config, NULL, NULL);
|
/external/quake/standalone/ |
main.cpp | 205 gContext = eglCreateContext(gDisplay, config, NULL, NULL); 206 checkEGLError("eglCreateContext");
|
/frameworks/base/opengl/tests/gl_basic/ |
gl_basic.cpp | 249 if ( (eglContext = eglCreateContext(eglDisplay, myConfig, 0, 0)) == EGL_NO_CONTEXT ) 251 printf("eglCreateContext failed\n");
|
/frameworks/base/libs/rs/ |
rsContext.cpp | 117 mEGL.mContext = eglCreateContext(mEGL.mDisplay, mEGL.mConfig, EGL_NO_CONTEXT, context_attribs2); 119 mEGL.mContext = eglCreateContext(mEGL.mDisplay, mEGL.mConfig, EGL_NO_CONTEXT, NULL); 121 checkEglError("eglCreateContext"); 123 LOGE("eglCreateContext returned EGL_NO_CONTEXT");
|
/frameworks/base/opengl/java/com/google/android/gles_jni/ |
EGLImpl.java | 49 public EGLContext eglCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list) {
|
/frameworks/base/opengl/java/javax/microedition/khronos/egl/ |
EGL10.java | 99 EGLContext eglCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list);
|
/frameworks/base/opengl/tests/angeles/include/GLES/ |
egl.h | 212 GLAPI EGLContext APIENTRY eglCreateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_list, const EGLint *attrib_list);
|