diff options
author | David Schleef <ds@schleef.org> | 2007-12-22 05:01:58 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2007-12-22 05:01:58 +0000 |
commit | 11b0b3dd23e7f44adeea7639a515f6d00f96df82 (patch) | |
tree | 63e4a96e8f99635b5d82dbc95c059455c659bbf0 /sys/glsink/glextensions.c | |
parent | 21962cbffe8d7255726b34bfc3a773ffcc3fa43b (diff) | |
download | gst-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/glextensions.c')
-rw-r--r-- | sys/glsink/glextensions.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/glsink/glextensions.c b/sys/glsink/glextensions.c index 6c48e8b2..6926a970 100644 --- a/sys/glsink/glextensions.c +++ b/sys/glsink/glextensions.c @@ -179,3 +179,5 @@ DEFINE_FUNC (glFramebufferRenderbufferEXT, (GLenum target, GLenum attachment, DEFINE_FUNC (glGetFramebufferAttachmentParameterivEXT, (GLenum target, GLenum pname, GLint * params), (target, pname, params)); DEFINE_FUNC (glGenerateMipmapEXT, (GLenum target), (target)); + +DEFINE_FUNC (glWindowPos2iARB, (GLint x, GLint y), (x, y)); |