summaryrefslogtreecommitdiffstats
path: root/src/glsl/glcpp/glcpp-parse.y
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2013-01-21 17:09:53 -0800
committerMatt Turner <[email protected]>2013-01-25 14:10:23 -0800
commit12aa2fec5b4ffa89327551fbecd29acf1774959b (patch)
treef1cb221496d64cb9851a912c8cebea13321c9117 /src/glsl/glcpp/glcpp-parse.y
parent7a850c58511f2e8367f3829ac6c3229c320cd91e (diff)
glsl: Add infrastructure for ARB_shading_language_packing
Reviewed-by: Chad Versace <[email protected]> Reviewed-by: Paul Berry <[email protected]>
Diffstat (limited to 'src/glsl/glcpp/glcpp-parse.y')
-rw-r--r--src/glsl/glcpp/glcpp-parse.y3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/glsl/glcpp/glcpp-parse.y b/src/glsl/glcpp/glcpp-parse.y
index 8fba923a2cb..e927c7cb7cd 100644
--- a/src/glsl/glcpp/glcpp-parse.y
+++ b/src/glsl/glcpp/glcpp-parse.y
@@ -1227,6 +1227,9 @@ glcpp_parser_create (const struct gl_extensions *extensions, int api)
if (extensions->ARB_texture_cube_map_array)
add_builtin_define(parser, "GL_ARB_texture_cube_map_array", 1);
+
+ if (extensions->ARB_shading_language_packing)
+ add_builtin_define(parser, "GL_ARB_shading_language_packing", 1);
}
}