aboutsummaryrefslogtreecommitdiffstats
path: root/src/glsl/builtins
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2011-11-14 17:23:44 -0800
committerKenneth Graunke <[email protected]>2011-11-16 00:57:33 -0800
commit5e3e9a8e9cbcd721a73c9f18edcd72a22b2de52d (patch)
tree74b8abb6098ae0aa33052a66e144800f1d7c0b8f /src/glsl/builtins
parent4f677ca5f9f998a6f57a1390156e772f1f87280a (diff)
glsl: Add missing textureSize(samplerCubeShadow, int) variant.
Signed-off-by: Kenneth Graunke <[email protected]> Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/glsl/builtins')
-rwxr-xr-xsrc/glsl/builtins/tools/texture_builtins.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/builtins/tools/texture_builtins.py b/src/glsl/builtins/tools/texture_builtins.py
index 586e20618df..27cc027cd40 100755
--- a/src/glsl/builtins/tools/texture_builtins.py
+++ b/src/glsl/builtins/tools/texture_builtins.py
@@ -150,6 +150,7 @@ def generate_texture_functions(fs):
generate_fiu_sigs("txs", "2DArray")
generate_sigs("", "txs", "1DShadow")
generate_sigs("", "txs", "2DShadow")
+ generate_sigs("", "txs", "CubeShadow")
generate_sigs("", "txs", "1DArrayShadow")
generate_sigs("", "txs", "2DArrayShadow")
end_function(fs, "textureSize")