diff options
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 |