Merge "Allow in/out qualifiers in GLSL 440/450" into deqp-dev
diff --git a/framework/opengl/gluShaderUtil.cpp b/framework/opengl/gluShaderUtil.cpp
index bc8dfde..fa7f350 100644
--- a/framework/opengl/gluShaderUtil.cpp
+++ b/framework/opengl/gluShaderUtil.cpp
@@ -78,7 +78,7 @@
 
 bool glslVersionUsesInOutQualifiers (GLSLVersion version)
 {
-	return de::inRange<int>(version, GLSL_VERSION_300_ES, GLSL_VERSION_320_ES) || de::inRange<int>(version, GLSL_VERSION_330, GLSL_VERSION_430);
+	return de::inRange<int>(version, GLSL_VERSION_300_ES, GLSL_VERSION_320_ES) || de::inRange<int>(version, GLSL_VERSION_330, GLSL_VERSION_450);
 }
 
 bool glslVersionIsES (GLSLVersion version)