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/enable.c | |
parent | dd1a9f75dc1d29e3383f27aaa1cf024c83e5c8e2 (diff) |
removed GL_HP_occlusion_test extension
Diffstat (limited to 'src/mesa/main/enable.c')
-rw-r--r-- | src/mesa/main/enable.c | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c index 67fd083ca82..7ce13a19675 100644 --- a/src/mesa/main/enable.c +++ b/src/mesa/main/enable.c @@ -5,9 +5,9 @@ /* * Mesa 3-D graphics library - * Version: 6.1 + * Version: 6.5 * - * Copyright (C) 1999-2004 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -687,19 +687,6 @@ void _mesa_set_enable( GLcontext *ctx, GLenum cap, GLboolean state ) client_state( ctx, cap, state ); return; - /* GL_HP_occlusion_test */ - case GL_OCCLUSION_TEST_HP: - CHECK_EXTENSION(HP_occlusion_test, cap); - if (ctx->Depth.OcclusionTest == state) - return; - FLUSH_VERTICES(ctx, _NEW_DEPTH); - ctx->Depth.OcclusionTest = state; - if (state) - ctx->OcclusionResult = ctx->OcclusionResultSaved; - else - ctx->OcclusionResultSaved = ctx->OcclusionResult; - break; - /* GL_SGIS_pixel_texture */ case GL_PIXEL_TEXTURE_SGIS: CHECK_EXTENSION(SGIS_pixel_texture, cap); @@ -1255,11 +1242,6 @@ _mesa_IsEnabled( GLenum cap ) CHECK_EXTENSION(EXT_histogram); return ctx->Pixel.MinMaxEnabled; - /* GL_HP_occlusion_test */ - case GL_OCCLUSION_TEST_HP: - CHECK_EXTENSION(HP_occlusion_test); - return ctx->Depth.OcclusionTest; - /* GL_SGIS_pixel_texture */ case GL_PIXEL_TEXTURE_SGIS: CHECK_EXTENSION(SGIS_pixel_texture); |