st/egl: eglBindTexImage should bind to an OpenGL ES texture.
authorChia-I Wu <olvaffe@gmail.com>
Sat, 30 Jan 2010 15:13:18 +0000 (23:13 +0800)
committerChia-I Wu <olvaffe@gmail.com>
Sat, 30 Jan 2010 15:15:21 +0000 (23:15 +0800)
The spec says that it only works with OpenGL ES.

src/gallium/state_trackers/egl/common/egl_g3d.c

index 3f52085..f4c4032 100644 (file)
@@ -1135,8 +1135,7 @@ egl_g3d_bind_tex_image(_EGLDriver *drv, _EGLDisplay *dpy,
             PIPE_FLUSH_RENDER_CACHE | PIPE_FLUSH_FRAME, NULL);
    }
 
-   /* XXX change to EGL_OPENGL_ES_API once OpenGL ES is merged */
-   gctx = egl_g3d_get_current_context(EGL_OPENGL_API);
+   gctx = egl_g3d_get_current_context(EGL_OPENGL_ES_API);
    if (gctx) {
       if (!gsurf->render_surface)
          return EGL_FALSE;
@@ -1163,9 +1162,8 @@ egl_g3d_release_tex_image(_EGLDriver *drv, _EGLDisplay *dpy,
 
    if (gsurf->render_surface) {
       _EGLThreadInfo *t = _eglGetCurrentThread();
-      /* XXX change to EGL_OPENGL_ES_API once OpenGL ES is merged */
       struct egl_g3d_context *gctx = egl_g3d_context(
-            t->CurrentContexts[_eglConvertApiToIndex(EGL_OPENGL_API)]);
+            t->CurrentContexts[_eglConvertApiToIndex(EGL_OPENGL_ES_API)]);
 
       /* what if the context the surface binds to is no longer current? */
       if (gctx)