mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 08:50:09 +01:00
mesa: add GLSL 4.60 to shading_language_version()
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
parent
c245502918
commit
56e3b8b9e6
1 changed files with 2 additions and 0 deletions
|
|
@ -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()");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue