diff options
author | Brian Paul <[email protected]> | 2005-11-08 14:45:48 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-11-08 14:45:48 +0000 |
commit | 0bffb1192a599b11af11604ad590f6a50c054bf1 (patch) | |
tree | 5f9ecae6fbcdecbbeabaab66841d56a0ba128ae8 /src/mesa/main/dd.h | |
parent | 3e9c099088424c149931dcf546ae0a4d9ac2ae76 (diff) |
some initial work on upcoming GL_EXT_framebuffer_blit extension
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 5f680116e56..d07a7a26b1e 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -807,6 +807,12 @@ struct dd_function_table { GLenum texTarget, GLuint level, GLuint zoffset); /*@}*/ #endif +#if FEATURE_EXT_framebuffer_blit + void (*BlitFramebuffer)(GLcontext *ctx, + GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, + GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, + GLbitfield mask, GLenum filter); +#endif /** * \name Query objects |