diff options
Diffstat (limited to 'ext/gl/gstgloverlay.h')
-rw-r--r-- | ext/gl/gstgloverlay.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ext/gl/gstgloverlay.h b/ext/gl/gstgloverlay.h index 2dedc0190..d81a0a0eb 100644 --- a/ext/gl/gstgloverlay.h +++ b/ext/gl/gstgloverlay.h @@ -60,6 +60,15 @@ struct _GstGLOverlay gint type_file; // 0 = No; 1 = PNG and 2 = JPEG gint window_width, window_height; gint image_width, image_height; + + gboolean geometry_change; + + GLuint vao; + GLuint overlay_vao; + GLuint vbo; + GLuint overlay_vbo; + GLuint attr_position; + GLuint attr_texture; }; struct _GstGLOverlayClass |