mesa: disallow creation of GL 3.1 compatibility contexts

Death to driver-specific hacks!

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
Marek Olšák
2012-12-08 22:48:47 +01:00
parent 25409c6da8
commit 0ac83a2001
3 changed files with 8 additions and 9 deletions

View File

@@ -570,10 +570,7 @@ void st_init_extensions(struct st_context *st)
glsl_feature_level = screen->get_param(screen, PIPE_CAP_GLSL_FEATURE_LEVEL);
if (glsl_feature_level >= 140) {
if (ctx->API == API_OPENGL_CORE)
ctx->Const.GLSLVersion = 140;
else
ctx->Const.GLSLVersion = 130;
ctx->Const.GLSLVersion = 140;
} else if (glsl_feature_level >= 130) {
ctx->Const.GLSLVersion = 130;
} else {