summaryrefslogtreecommitdiff
path: root/include/GL
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2006-03-01 01:54:59 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2006-03-01 01:54:59 +0000
commita23109760923fd57fa6a652d85d245fef00bfabf (patch)
treefe772ab5e42e0b4a61247c684caada295069bcc8 /include/GL
parentfbe48ef01f263da09275044ceb871bc7190df1ec (diff)
GL_EXT_framebuffer_blit tokens/functions
Diffstat (limited to 'include/GL')
-rw-r--r--include/GL/gl.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/GL/gl.h b/include/GL/gl.h
index c4becf5a14f..75b24dcc31d 100644
--- a/include/GL/gl.h
+++ b/include/GL/gl.h
@@ -2260,6 +2260,28 @@ typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VEXTPROC) (GLuint id, GLenum pnam
+#ifndef GL_EXT_framebuffer_blit
+#define GL_EXT_framebuffer_blit 1
+
+#define GL_READ_FRAMEBUFFER_EXT 0x8CA8
+#define GL_DRAW_FRAMEBUFFER_EXT 0x8CA9
+#define GL_DRAW_FRAMEBUFFER_BINDING_EXT 0x8CA6
+#define GL_READ_FRAMEBUFFER_BINDING_EXT 0x8CAA
+
+GLAPI void GLAPIENTRY
+glBlitFramebufferEXT(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
+ GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
+ GLbitfield mask, GLenum filter);
+
+typedef void (APIENTRYP PFNGLBLITFRAMEBUFFEREXTPROC)
+ (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
+ GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
+ GLbitfield mask, GLenum filter);
+
+#endif /* GL_EXT_framebuffer_blit */
+
+
+
#ifndef GL_EXT_packed_depth_stencil
#define GL_EXT_packed_depth_stencil 1