aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorSamuel Pitoiset <[email protected]>2017-08-01 12:26:31 +0200
committerSamuel Pitoiset <[email protected]>2017-08-02 13:36:43 +0200
commit56e3b8b9e6e38abab981f089d74290adc75f6d43 (patch)
tree8d9695c2f5bbd7bfc628dfaf8f8db9bc561e96b8 /src/mesa
parentc2455029189542b510191eaadfd7416347bc1de4 (diff)
mesa: add GLSL 4.60 to shading_language_version()
Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/main/getstring.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/getstring.c b/src/mesa/main/getstring.c
index 5da405d9fa4..4c805ca4d51 100644
--- a/src/mesa/main/getstring.c
+++ b/src/mesa/main/getstring.c
@@ -65,6 +65,8 @@ shading_language_version(struct gl_context *ctx)
return (const GLubyte *) "4.40";
case 450:
return (const GLubyte *) "4.50";
+ case 460:
+ return (const GLubyte *) "4.60";
default:
_mesa_problem(ctx,
"Invalid GLSL version in shading_language_version()");