diff options
author | Dave Airlie <[email protected]> | 2010-09-12 06:31:30 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2010-12-18 17:33:25 +1000 |
commit | ff7aa554a11863de2c4c0b4b6d1ec7b07c819739 (patch) | |
tree | e11ce96768871fe6c3d5dcdbb46e94ec62d3ec49 /src/mesa/main/extensions.c | |
parent | 7048095513f8e91db26736eee0343b1a00d18f6f (diff) |
mesa/swrast/st: add ARB_occlusion_query2 support.
This gets my vote for most pointless extension of all time, I'm guessing
some driver could possibly optimise for this instead of counting it might
just get a true/false, but I'm not really sure.
need this to eventually advertise 3.3 despite its total uselessness.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index f3bf5cb164b..fd5b4e915cd 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -259,6 +259,7 @@ _mesa_enable_sw_extensions(struct gl_context *ctx) ctx->Extensions.ARB_multitexture = GL_TRUE; #if FEATURE_queryobj ctx->Extensions.ARB_occlusion_query = GL_TRUE; + ctx->Extensions.ARB_occlusion_query2 = GL_TRUE; #endif ctx->Extensions.ARB_point_sprite = GL_TRUE; #if FEATURE_ARB_shader_objects |