diff options
author | Brian Paul <[email protected]> | 2005-08-25 14:23:38 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-08-25 14:23:38 +0000 |
commit | 6e4f594a02fc384b17d5732be652d7d28618aec2 (patch) | |
tree | 8f1b737ae8cdc83f44b46224d410c8822e0689be /src/mesa/main/get_gen.py | |
parent | dd1a9f75dc1d29e3383f27aaa1cf024c83e5c8e2 (diff) |
removed GL_HP_occlusion_test extension
Diffstat (limited to 'src/mesa/main/get_gen.py')
-rw-r--r-- | src/mesa/main/get_gen.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/mesa/main/get_gen.py b/src/mesa/main/get_gen.py index 4eedc03c7a8..aff4a0c922c 100644 --- a/src/mesa/main/get_gen.py +++ b/src/mesa/main/get_gen.py @@ -558,21 +558,6 @@ StateVars = [ "matrix[3]", "matrix[7]", "matrix[11]", "matrix[15]"], "const GLfloat *matrix = ctx->TextureMatrixStack[ctx->Texture.CurrentUnit].Top->m;", None ), - # GL_HP_occlusion_test - ( "GL_OCCLUSION_TEST_HP", GLboolean, ["ctx->Depth.OcclusionTest"], "", - "HP_occlusion_test" ), - ( "GL_OCCLUSION_TEST_RESULT_HP", GLboolean, [], - """FLUSH_VERTICES(ctx, _NEW_DEPTH); - if (ctx->Depth.OcclusionTest) - params[0] = ctx->OcclusionResult; - else - params[0] = ctx->OcclusionResultSaved; - /* reset flag now */ - ctx->OcclusionResult = GL_FALSE; - ctx->OcclusionResultSaved = GL_FALSE; - return;""", - "HP_occlusion_test" ), - # GL_SGIS_pixel_texture ( "GL_PIXEL_TEXTURE_SGIS", GLboolean, ["ctx->Pixel.PixelTextureEnabled"], "", "SGIS_pixel_texture" ), |