Add forgotten autogenerated EXT_texture_array_fs folder.
authorKenneth Graunke <kenneth@whitecape.org>
Wed, 9 Jun 2010 23:46:09 +0000 (16:46 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Wed, 9 Jun 2010 23:46:09 +0000 (16:46 -0700)
builtins/EXT_texture_array_fs/textures [new file with mode: 0644]

diff --git a/builtins/EXT_texture_array_fs/textures b/builtins/EXT_texture_array_fs/textures
new file mode 100644 (file)
index 0000000..74e1843
--- /dev/null
@@ -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) ))))
+
+))