summaryrefslogtreecommitdiff
path: root/src/glsl/builtins/EXT_texture_array_fs/textures
blob: 74e184387acbc075568dcc29ca68e44bb74dbe53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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) ))))

))