[748/906] glupload: GL_STENCIL_ATTACHMENT is needed for desktop GL, not GLES
authorSebastian Dröge <slomo@circular-chaos.org>
Fri, 12 Jul 2013 12:31:48 +0000 (14:31 +0200)
committerMatthew Waters <ystreet00@gmail.com>
Sat, 15 Mar 2014 17:36:58 +0000 (18:36 +0100)
gst-libs/gst/gl/gstgldownload.c

index b238222..db2a8d4 100644 (file)
@@ -787,13 +787,10 @@ _init_download (GstGLDisplay * display, GstGLDownload * download)
       /* attach the depth render buffer to the FBO */
       gl->FramebufferRenderbuffer (GL_FRAMEBUFFER,
           GL_DEPTH_ATTACHMENT, GL_RENDERBUFFER, download->depth_buffer);
-
-#if GST_GL_HAVE_GLES2
-      if (USING_GLES2 (display)) {
+      if (USING_OPENGL (display)) {
         gl->FramebufferRenderbuffer (GL_FRAMEBUFFER,
             GL_STENCIL_ATTACHMENT, GL_RENDERBUFFER, download->depth_buffer);
       }
-#endif
 
       if (!gst_gl_display_check_framebuffer_status (display))
         gst_gl_display_set_error (display, "GL framebuffer status incomplete");