summaryrefslogtreecommitdiff
path: root/gst-libs/gst/gl/gstglfilter.h
diff options
context:
space:
mode:
authorMatthew Waters <matthew@centricular.com>2014-11-12 22:49:11 +1100
committerMatthew Waters <matthew@centricular.com>2014-11-28 09:14:25 +1100
commit6d39e0499266672a14495b92383ebb2e44126177 (patch)
treeafd72186963fe5de031460850904a0d87f5c67a2 /gst-libs/gst/gl/gstglfilter.h
parent5ff5f8c1ee6b81e4606988f2c903cd0dae8d7bda (diff)
downloadgstreamer-plugins-bad-6d39e0499266672a14495b92383ebb2e44126177.tar.gz
glfilter: add a gl3 code path using vao's and vbo's
Diffstat (limited to 'gst-libs/gst/gl/gstglfilter.h')
-rw-r--r--gst-libs/gst/gl/gstglfilter.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gst-libs/gst/gl/gstglfilter.h b/gst-libs/gst/gl/gstglfilter.h
index 0df56f663..0d511f2bd 100644
--- a/gst-libs/gst/gl/gstglfilter.h
+++ b/gst-libs/gst/gl/gstglfilter.h
@@ -90,10 +90,10 @@ struct _GstGLFilter
GstCaps *in_gl_caps;
-#if GST_GL_HAVE_GLES2
- GLint draw_attr_position_loc;
- GLint draw_attr_texture_loc;
-#endif
+ GLuint vao;
+ GLuint vertex_buffer;
+ GLint draw_attr_position_loc;
+ GLint draw_attr_texture_loc;
};
/**