summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2010-06-09 16:46:09 -0700
committerKenneth Graunke <kenneth@whitecape.org>2010-06-09 16:46:09 -0700
commit75393ee16b2d4b24e3f268b66ae237e8fec49943 (patch)
tree485a7346082305efb475f0c37bed1e36ddbaf8dd
parentaf05703826687e78267d234aeea9b7469baced48 (diff)
Add forgotten autogenerated EXT_texture_array_fs folder.
-rw-r--r--builtins/EXT_texture_array_fs/textures27
1 files changed, 27 insertions, 0 deletions
diff --git a/builtins/EXT_texture_array_fs/textures b/builtins/EXT_texture_array_fs/textures
new file mode 100644
index 0000000000..74e184387a
--- /dev/null
+++ b/builtins/EXT_texture_array_fs/textures
@@ -0,0 +1,27 @@
+((function texture1DArray
+ (signature vec4
+ (parameters
+ (declare (in) sampler1DArray sampler)
+ (declare (in) vec2 P)
+ (declare (in) float bias) )
+ ((return (txb (var_ref sampler) (var_ref P) (0 0 0) 1 () (var_ref bias) ))))
+
+)
+ (function texture2DArray
+ (signature vec4
+ (parameters
+ (declare (in) sampler2DArray sampler)
+ (declare (in) vec3 P)
+ (declare (in) float bias) )
+ ((return (txb (var_ref sampler) (var_ref P) (0 0 0) 1 () (var_ref bias) ))))
+
+)
+ (function shadow1DArray
+ (signature vec4
+ (parameters
+ (declare (in) sampler1DArrayShadow sampler)
+ (declare (in) vec3 P)
+ (declare (in) float bias) )
+ ((return (txb (var_ref sampler) (swiz xy (var_ref P)) (0 0 0) 1 (swiz z (var_ref P)) (var_ref bias) ))))
+
+))