summaryrefslogtreecommitdiffstats
path: root/sys/glsink/glvideo.h
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2007-12-22 05:01:58 +0000
committerDavid Schleef <ds@schleef.org>2007-12-22 05:01:58 +0000
commit11b0b3dd23e7f44adeea7639a515f6d00f96df82 (patch)
tree63e4a96e8f99635b5d82dbc95c059455c659bbf0 /sys/glsink/glvideo.h
parent21962cbffe8d7255726b34bfc3a773ffcc3fa43b (diff)
downloadgst-plugins-bad-11b0b3dd23e7f44adeea7639a515f6d00f96df82.tar.gz
gst-plugins-bad-11b0b3dd23e7f44adeea7639a515f6d00f96df82.tar.bz2
gst-plugins-bad-11b0b3dd23e7f44adeea7639a515f6d00f96df82.zip
sys/glsink/: A careful read of the documentation reveals that I can't use renderbuffers as textures. Duh. Checkpoin...
Original commit message from CVS: * sys/glsink/glextensions.c: * sys/glsink/glextensions.h: * sys/glsink/glvideo.c: * sys/glsink/glvideo.h: * sys/glsink/gstglbuffer.c: * sys/glsink/gstgldownload.c: * sys/glsink/gstglupload.c: A careful read of the documentation reveals that I can't use renderbuffers as textures. Duh. Checkpoint because I'm about to rewrite a bunch of code.
Diffstat (limited to 'sys/glsink/glvideo.h')
-rw-r--r--sys/glsink/glvideo.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/glsink/glvideo.h b/sys/glsink/glvideo.h
index aef064e3..4fb3761e 100644
--- a/sys/glsink/glvideo.h
+++ b/sys/glsink/glvideo.h
@@ -81,7 +81,9 @@ void gst_gl_display_update_attributes (GstGLDisplay *display);
void gst_gl_display_clear (GstGLDisplay *display);
void gst_gl_display_draw_image (GstGLDisplay * display, GstGLImageType type,
void *data, int width, int height);
-
+void gst_gl_display_draw_rbo (GstGLDisplay * display, GLuint rbo,
+ int width, int height);
+void gst_gl_display_check_error (GstGLDisplay *display, int line);
#endif