summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/get.c
diff options
context:
space:
mode:
authorMarek Olšák <marek.olsak@amd.com>2016-01-24 15:32:06 +0100
committerMarek Olšák <marek.olsak@amd.com>2016-01-24 15:47:39 +0100
commit24ea81a4916091f487d132e22aaaaf0e88742d36 (patch)
treea8abbe6cd26f2e3afe39484bd55ed4db8e2497f3 /src/mesa/main/get.c
parente707b9d8bab5e836c851222352263d0dc7c5fac9 (diff)
downloadexternal_mesa3d-24ea81a4916091f487d132e22aaaaf0e88742d36.zip
external_mesa3d-24ea81a4916091f487d132e22aaaaf0e88742d36.tar.gz
external_mesa3d-24ea81a4916091f487d132e22aaaaf0e88742d36.tar.bz2
Revert "mesa: enable enums for OES_geometry_shader"
This reverts commit 67e30987031d189d606125d4b712a575f619ab44. It breaks a bunch of geometry shader tests, such as "spec@!opengl 3.2@minmax" and others depending on the glGet queries.
Diffstat (limited to 'src/mesa/main/get.c')
-rw-r--r--src/mesa/main/get.c64
1 files changed, 9 insertions, 55 deletions
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c
index e1dd82f..95cb18c 100644
--- a/src/mesa/main/get.c
+++ b/src/mesa/main/get.c
@@ -147,14 +147,11 @@ enum value_extra {
EXTRA_VALID_CLIP_DISTANCE,
EXTRA_FLUSH_CURRENT,
EXTRA_GLSL_130,
- EXTRA_EXT_UBO_GS,
- EXTRA_EXT_ATOMICS_GS,
- EXTRA_EXT_SHADER_IMAGE_GS,
+ EXTRA_EXT_UBO_GS4,
+ EXTRA_EXT_ATOMICS_GS4,
+ EXTRA_EXT_SHADER_IMAGE_GS4,
EXTRA_EXT_ATOMICS_TESS,
EXTRA_EXT_SHADER_IMAGE_TESS,
- EXTRA_EXT_SSBO_GS,
- EXTRA_EXT_FB_NO_ATTACH_GS,
- EXTRA_EXT_ES_GS,
};
#define NO_EXTRA NULL
@@ -311,7 +308,7 @@ static const int extra_ARB_transform_feedback2_api_es3[] = {
};
static const int extra_ARB_uniform_buffer_object_and_geometry_shader[] = {
- EXTRA_EXT_UBO_GS,
+ EXTRA_EXT_UBO_GS4,
EXTRA_END
};
@@ -346,12 +343,12 @@ static const int extra_EXT_texture_array_es3[] = {
};
static const int extra_ARB_shader_atomic_counters_and_geometry_shader[] = {
- EXTRA_EXT_ATOMICS_GS,
+ EXTRA_EXT_ATOMICS_GS4,
EXTRA_END
};
static const int extra_ARB_shader_image_load_store_and_geometry_shader[] = {
- EXTRA_EXT_SHADER_IMAGE_GS,
+ EXTRA_EXT_SHADER_IMAGE_GS4,
EXTRA_END
};
@@ -378,29 +375,6 @@ static const int extra_ARB_shader_storage_buffer_object_es31[] = {
EXTRA_END
};
-static const int extra_ARB_shader_storage_buffer_object_and_geometry_shader[] = {
- EXTRA_EXT_SSBO_GS,
- EXTRA_END
-};
-
-
-static const int extra_ARB_framebuffer_no_attachments_and_geometry_shader[] = {
- EXTRA_EXT_FB_NO_ATTACH_GS,
- EXTRA_END
-};
-
-static const int extra_ARB_viewport_array_or_oes_geometry_shader[] = {
- EXT(ARB_viewport_array),
- EXTRA_EXT_ES_GS,
- EXTRA_END
-};
-
-static const int extra_ARB_gpu_shader5_or_oes_geometry_shader[] = {
- EXT(ARB_gpu_shader5),
- EXTRA_EXT_ES_GS,
- EXTRA_END
-};
-
EXTRA_EXT(ARB_texture_cube_map);
EXTRA_EXT(EXT_texture_array);
EXTRA_EXT(NV_fog_distance);
@@ -481,12 +455,6 @@ static const int extra_gl32_es3[] = {
EXTRA_END,
};
-static const int extra_version_32_OES_geometry_shader[] = {
- EXTRA_VERSION_32,
- EXTRA_EXT_ES_GS,
- EXTRA_END
-};
-
static const int extra_gl40_ARB_sample_shading[] = {
EXTRA_VERSION_40,
EXT(ARB_sample_shading),
@@ -1186,17 +1154,17 @@ check_extra(struct gl_context *ctx, const char *func, const struct value_desc *d
if (ctx->Const.GLSLVersion >= 130)
api_found = GL_TRUE;
break;
- case EXTRA_EXT_UBO_GS:
+ case EXTRA_EXT_UBO_GS4:
api_check = GL_TRUE;
api_found = (ctx->Extensions.ARB_uniform_buffer_object &&
_mesa_has_geometry_shaders(ctx));
break;
- case EXTRA_EXT_ATOMICS_GS:
+ case EXTRA_EXT_ATOMICS_GS4:
api_check = GL_TRUE;
api_found = (ctx->Extensions.ARB_shader_atomic_counters &&
_mesa_has_geometry_shaders(ctx));
break;
- case EXTRA_EXT_SHADER_IMAGE_GS:
+ case EXTRA_EXT_SHADER_IMAGE_GS4:
api_check = GL_TRUE;
api_found = (ctx->Extensions.ARB_shader_image_load_store &&
_mesa_has_geometry_shaders(ctx));
@@ -1211,20 +1179,6 @@ check_extra(struct gl_context *ctx, const char *func, const struct value_desc *d
api_found = ctx->Extensions.ARB_shader_image_load_store &&
_mesa_has_tessellation(ctx);
break;
- case EXTRA_EXT_SSBO_GS:
- api_check = GL_TRUE;
- api_found = (ctx->Extensions.ARB_shader_storage_buffer_object &&
- _mesa_has_geometry_shaders(ctx));
- break;
- case EXTRA_EXT_FB_NO_ATTACH_GS:
- api_check = GL_TRUE;
- api_found = (ctx->Extensions.ARB_framebuffer_no_attachments &&
- _mesa_has_geometry_shaders(ctx));
- break;
- case EXTRA_EXT_ES_GS:
- api_check = GL_TRUE;
- api_found = _mesa_has_OES_geometry_shader(ctx);
- break;
case EXTRA_END:
break;
default: /* *e is a offset into the extension struct */