summaryrefslogtreecommitdiff
path: root/src/glsl/builtins/110/textures
blob: c81b7e8ad499d3df7f5eb47d4b6a91bbf3d53a44 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
((function texture1D
   (signature vec4
     (parameters
       (declare (in) sampler1D sampler)
       (declare (in) float P) )
     ((return (tex (var_ref sampler) (var_ref P) (0 0 0) 1 () ))))

)
 (function texture1DLod
   (signature vec4
     (parameters
       (declare (in) sampler1D sampler)
       (declare (in) float P) 
       (declare (in) float lod) )
     ((return (txl (var_ref sampler) (var_ref P) (0 0 0) 1 () (var_ref lod) ))))

)
 (function texture1DProj
   (signature vec4
     (parameters
       (declare (in) sampler1D sampler)
       (declare (in) vec2 P) )
     ((return (tex (var_ref sampler) (swiz x (var_ref P)) (0 0 0) (swiz y (var_ref P)) () ))))

   (signature vec4
     (parameters
       (declare (in) sampler1D sampler)
       (declare (in) vec4 P) )
     ((return (tex (var_ref sampler) (swiz x (var_ref P)) (0 0 0) (swiz w (var_ref P)) () ))))

)
 (function texture1DProjLod
   (signature vec4
     (parameters
       (declare (in) sampler1D sampler)
       (declare (in) vec2 P) 
       (declare (in) float lod) )
     ((return (txl (var_ref sampler) (swiz x (var_ref P)) (0 0 0) (swiz y (var_ref P)) () (var_ref lod) ))))

   (signature vec4
     (parameters
       (declare (in) sampler1D sampler)
       (declare (in) vec4 P) 
       (declare (in) float lod) )
     ((return (txl (var_ref sampler) (swiz x (var_ref P)) (0 0 0) (swiz w (var_ref P)) () (var_ref lod) ))))

)
 (function texture2D
   (signature vec4
     (parameters
       (declare (in) sampler2D sampler)
       (declare (in) vec2 P) )
     ((return (tex (var_ref sampler) (var_ref P) (0 0 0) 1 () ))))

)
(function texture2DLod
   (signature vec4
     (parameters
       (declare (in) sampler2D sampler)
       (declare (in) vec2 P) 
       (declare (in) float lod) )
     ((return (txl (var_ref sampler) (var_ref P) (0 0 0) 1 () (var_ref lod) ))))

)
 (function texture2DProj
   (signature vec4
     (parameters
       (declare (in) sampler2D sampler)
       (declare (in) vec3 P) )
     ((return (tex (var_ref sampler) (swiz xy (var_ref P)) (0 0 0) (swiz z (var_ref P)) () ))))

   (signature vec4
     (parameters
       (declare (in) sampler2D sampler)
       (declare (in) vec4 P) )
     ((return (tex (var_ref sampler) (swiz xy (var_ref P)) (0 0 0) (swiz w (var_ref P)) () ))))

)
 (function texture2DProjLod
   (signature vec4
     (parameters
       (declare (in) sampler2D sampler)
       (declare (in) vec3 P) 
       (declare (in) float lod) )
     ((return (txl (var_ref sampler) (swiz xy (var_ref P)) (0 0 0) (swiz z (var_ref P)) () (var_ref lod) ))))

   (signature vec4
     (parameters
       (declare (in) sampler2D sampler)
       (declare (in) vec4 P) 
       (declare (in) float lod) )
     ((return (txl (var_ref sampler) (swiz xy (var_ref P)) (0 0 0) (swiz w (var_ref P)) () (var_ref lod) ))))

)
 (function texture3D
   (signature vec4
     (parameters
       (declare (in) sampler3D sampler)
       (declare (in) vec3 P) )
     ((return (tex (var_ref sampler) (var_ref P) (0 0 0) 1 () ))))

)
 (function texture3DLod
   (signature vec4
     (parameters
       (declare (in) sampler3D sampler)
       (declare (in) vec3 P) 
       (declare (in) float lod) )
     ((return (txl (var_ref sampler) (var_ref P) (0 0 0) 1 () (var_ref lod) ))))

)
 (function texture3DProj
   (signature vec4
     (parameters
       (declare (in) sampler3D sampler)
       (declare (in) vec4 P) )
     ((return (tex (var_ref sampler) (swiz xyz (var_ref P)) (0 0 0) (swiz w (var_ref P)) () ))))

)
 (function texture3DProjLod
   (signature vec4
     (parameters
       (declare (in) sampler3D sampler)
       (declare (in) vec4 P) 
       (declare (in) float lod) )
     ((return (txl (var_ref sampler) (swiz xyz (var_ref P)) (0 0 0) (swiz w (var_ref P)) () (var_ref lod) ))))

)
 (function textureCube
   (signature vec4
     (parameters
       (declare (in) samplerCube sampler)
       (declare (in) vec3 P) )
     ((return (tex (var_ref sampler) (var_ref P) (0 0 0) 1 () ))))

)
 (function textureCubeLod
   (signature vec4
     (parameters
       (declare (in) samplerCube sampler)
       (declare (in) vec3 P) 
       (declare (in) float lod) )
     ((return (txl (var_ref sampler) (var_ref P) (0 0 0) 1 () (var_ref lod) ))))

)
 (function shadow1D
   (signature vec4
     (parameters
       (declare (in) sampler1DShadow sampler)
       (declare (in) vec3 P) )
     ((return (tex (var_ref sampler) (swiz x (var_ref P)) (0 0 0) 1 (swiz z (var_ref P)) ))))

)
 (function shadow1DLod
   (signature vec4
     (parameters
       (declare (in) sampler1DShadow sampler)
       (declare (in) vec3 P) 
       (declare (in) float lod) )
     ((return (txl (var_ref sampler) (swiz x (var_ref P)) (0 0 0) 1 (swiz z (var_ref P)) (var_ref lod) ))))

)
 (function shadow1DProj
   (signature vec4
     (parameters
       (declare (in) sampler1DShadow sampler)
       (declare (in) vec4 P) )
     ((return (tex (var_ref sampler) (swiz x (var_ref P)) (0 0 0) (swiz w (var_ref P)) (swiz z (var_ref P)) ))))

)
 (function shadow1DProjLod
   (signature vec4
     (parameters
       (declare (in) sampler1DShadow sampler)
       (declare (in) vec4 P) 
       (declare (in) float lod) )
     ((return (txl (var_ref sampler) (swiz x (var_ref P)) (0 0 0) (swiz w (var_ref P)) (swiz z (var_ref P)) (var_ref lod) ))))

)
 (function shadow2D
   (signature vec4
     (parameters
       (declare (in) sampler2DShadow sampler)
       (declare (in) vec3 P) )
     ((return (tex (var_ref sampler) (swiz xy (var_ref P)) (0 0 0) 1 (swiz z (var_ref P)) ))))

)
 (function shadow2DLod
   (signature vec4
     (parameters
       (declare (in) sampler2DShadow sampler)
       (declare (in) vec3 P) 
       (declare (in) float lod) )
     ((return (txl (var_ref sampler) (swiz xy (var_ref P)) (0 0 0) 1 (swiz z (var_ref P)) (var_ref lod) ))))

)
 (function shadow2DProj
   (signature vec4
     (parameters
       (declare (in) sampler2DShadow sampler)
       (declare (in) vec4 P) )
     ((return (tex (var_ref sampler) (swiz xy (var_ref P)) (0 0 0) (swiz w (var_ref P)) (swiz z (var_ref P)) ))))

)
 (function shadow2DProjLod
   (signature vec4
     (parameters
       (declare (in) sampler2DShadow sampler)
       (declare (in) vec4 P) 
       (declare (in) float lod) )
     ((return (txl (var_ref sampler) (swiz xy (var_ref P)) (0 0 0) (swiz w (var_ref P)) (swiz z (var_ref P)) (var_ref lod) ))))

))