diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2006-03-02 03:46:33 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2006-03-02 03:46:33 +0000 |
commit | 904ab0c22cc5dbfb09ff3a0e4f1b716760890bd7 (patch) | |
tree | 11a774e416779126d428dfed52b99efdff9b7567 /src/mesa | |
parent | afa1df58714c37b056fe9aee77500e900ee9dbf0 (diff) |
check FEATURE_EXT_framebuffer_blit
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/extensions.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 6cca924432..c411558aa9 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -229,6 +229,8 @@ _mesa_enable_sw_extensions(GLcontext *ctx) ctx->Extensions.EXT_fog_coord = GL_TRUE; #if FEATURE_EXT_framebuffer_object ctx->Extensions.EXT_framebuffer_object = GL_TRUE; +#endif +#if FEATURE_EXT_framebuffer_blit ctx->Extensions.EXT_framebuffer_blit = GL_TRUE; #endif ctx->Extensions.EXT_histogram = GL_TRUE; |