blob: 0aba76a5275baf14b004a05f34667dca0832e708 [file] [log] [blame]
Ben Clayton73ced332022-01-21 22:38:16 +00001SKIP: FAILED
2
3#version 310 es
Ben Clayton73ced332022-01-21 22:38:16 +00004
Stephen White0b392702022-01-28 22:36:58 +00005layout(location = 0) in vec3 position_1;
6layout(location = 1) in vec4 color_1;
7layout(location = 2) in vec2 quad_pos_1;
8layout(location = 0) out vec4 color_2;
9layout(location = 1) out vec2 quad_pos_2;
Ben Clayton73ced332022-01-21 22:38:16 +000010struct RenderParams {
11 mat4 modelViewProjectionMatrix;
12 vec3 right;
13 vec3 up;
14};
15
Stephen Whitec8c0e2e2022-01-25 20:06:05 +000016layout(binding = 0) uniform RenderParams_1 {
Ben Clayton73ced332022-01-21 22:38:16 +000017 mat4 modelViewProjectionMatrix;
18 vec3 right;
19 vec3 up;
20} render_params;
21
22struct VertexInput {
23 vec3 position;
24 vec4 color;
25 vec2 quad_pos;
26};
Stephen Whitee2f35ba2022-01-26 16:48:55 +000027
Ben Clayton73ced332022-01-21 22:38:16 +000028struct VertexOutput {
29 vec4 position;
30 vec4 color;
31 vec2 quad_pos;
32};
Stephen Whitee2f35ba2022-01-26 16:48:55 +000033
Ben Clayton73ced332022-01-21 22:38:16 +000034struct SimulationParams {
35 float deltaTime;
36 vec4 seed;
37};
Stephen Whitee2f35ba2022-01-26 16:48:55 +000038
Ben Clayton73ced332022-01-21 22:38:16 +000039struct Particle {
40 vec3 position;
41 float lifetime;
42 vec4 color;
43 vec3 velocity;
44};
Stephen Whitee2f35ba2022-01-26 16:48:55 +000045
Ben Clayton73ced332022-01-21 22:38:16 +000046struct UBO {
47 uint width;
48};
Stephen Whitee2f35ba2022-01-26 16:48:55 +000049
Stephen White0b392702022-01-28 22:36:58 +000050VertexOutput vs_main(VertexInput tint_symbol) {
51 vec3 quad_pos = (mat2x3(render_params.right, render_params.up) * tint_symbol.quad_pos);
52 vec3 position = (tint_symbol.position + (quad_pos * 0.01f));
53 VertexOutput tint_symbol_1 = VertexOutput(vec4(0.0f, 0.0f, 0.0f, 0.0f), vec4(0.0f, 0.0f, 0.0f, 0.0f), vec2(0.0f, 0.0f));
54 tint_symbol_1.position = (render_params.modelViewProjectionMatrix * vec4(position, 1.0f));
55 tint_symbol_1.color = tint_symbol.color;
56 tint_symbol_1.quad_pos = tint_symbol.quad_pos;
57 return tint_symbol_1;
Ben Clayton73ced332022-01-21 22:38:16 +000058}
Stephen Whitee2f35ba2022-01-26 16:48:55 +000059
Ben Clayton73ced332022-01-21 22:38:16 +000060void main() {
Stephen White790e4c22022-04-22 21:25:02 +000061 gl_PointSize = 1.0;
Stephen White0b3dfef2022-02-10 16:22:28 +000062 VertexInput tint_symbol_2 = VertexInput(position_1, color_1, quad_pos_1);
63 VertexOutput inner_result = vs_main(tint_symbol_2);
Stephen White0b392702022-01-28 22:36:58 +000064 gl_Position = inner_result.position;
65 color_2 = inner_result.color;
66 quad_pos_2 = inner_result.quad_pos;
67 gl_Position.y = -(gl_Position.y);
68 gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w);
69 return;
Ben Clayton73ced332022-01-21 22:38:16 +000070}
Ben Clayton73ced332022-01-21 22:38:16 +000071#version 310 es
72precision mediump float;
73
Stephen White0b392702022-01-28 22:36:58 +000074layout(location = 0) in vec4 color_1;
75layout(location = 1) in vec2 quad_pos_1;
Stephen White0b3dfef2022-02-10 16:22:28 +000076layout(location = 0) out vec4 value;
Ben Clayton73ced332022-01-21 22:38:16 +000077struct RenderParams {
78 mat4 modelViewProjectionMatrix;
79 vec3 right;
80 vec3 up;
81};
Stephen Whitee2f35ba2022-01-26 16:48:55 +000082
Ben Clayton73ced332022-01-21 22:38:16 +000083struct VertexInput {
84 vec3 position;
85 vec4 color;
86 vec2 quad_pos;
87};
Stephen Whitee2f35ba2022-01-26 16:48:55 +000088
Ben Clayton73ced332022-01-21 22:38:16 +000089struct VertexOutput {
90 vec4 position;
91 vec4 color;
92 vec2 quad_pos;
93};
Stephen Whitee2f35ba2022-01-26 16:48:55 +000094
Ben Clayton73ced332022-01-21 22:38:16 +000095struct SimulationParams {
96 float deltaTime;
97 vec4 seed;
98};
Stephen Whitee2f35ba2022-01-26 16:48:55 +000099
Ben Clayton73ced332022-01-21 22:38:16 +0000100struct Particle {
101 vec3 position;
102 float lifetime;
103 vec4 color;
104 vec3 velocity;
105};
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000106
Ben Clayton73ced332022-01-21 22:38:16 +0000107struct UBO {
108 uint width;
109};
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000110
Stephen White0b392702022-01-28 22:36:58 +0000111vec4 fs_main(VertexOutput tint_symbol) {
112 vec4 color = tint_symbol.color;
113 color.a = (color.a * max((1.0f - length(tint_symbol.quad_pos)), 0.0f));
114 return color;
Ben Clayton73ced332022-01-21 22:38:16 +0000115}
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000116
Ben Clayton73ced332022-01-21 22:38:16 +0000117void main() {
Stephen White0b3dfef2022-02-10 16:22:28 +0000118 VertexOutput tint_symbol_1 = VertexOutput(gl_FragCoord, color_1, quad_pos_1);
119 vec4 inner_result = fs_main(tint_symbol_1);
120 value = inner_result;
Stephen White0b392702022-01-28 22:36:58 +0000121 return;
Ben Clayton73ced332022-01-21 22:38:16 +0000122}
Ben Clayton73ced332022-01-21 22:38:16 +0000123#version 310 es
Ben Clayton73ced332022-01-21 22:38:16 +0000124
125vec2 rand_seed = vec2(0.0f, 0.0f);
Ben Clayton73ced332022-01-21 22:38:16 +0000126float rand() {
Stephen White2a02b682022-02-28 18:19:47 +0000127 rand_seed.x = fract((cos(dot(rand_seed, vec2(23.140779495f, 232.616897583f))) * 136.816802979f));
128 rand_seed.y = fract((cos(dot(rand_seed, vec2(54.478565216f, 345.841522217f))) * 534.764526367f));
Ben Clayton73ced332022-01-21 22:38:16 +0000129 return rand_seed.y;
130}
131
132struct RenderParams {
133 mat4 modelViewProjectionMatrix;
134 vec3 right;
135 vec3 up;
136};
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000137
Ben Clayton73ced332022-01-21 22:38:16 +0000138struct VertexInput {
139 vec3 position;
140 vec4 color;
141 vec2 quad_pos;
142};
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000143
Ben Clayton73ced332022-01-21 22:38:16 +0000144struct VertexOutput {
145 vec4 position;
146 vec4 color;
147 vec2 quad_pos;
148};
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000149
Ben Clayton73ced332022-01-21 22:38:16 +0000150struct SimulationParams {
151 float deltaTime;
152 vec4 seed;
153};
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000154
Ben Clayton73ced332022-01-21 22:38:16 +0000155struct Particle {
156 vec3 position;
157 float lifetime;
158 vec4 color;
159 vec3 velocity;
160};
161
Stephen Whitec8c0e2e2022-01-25 20:06:05 +0000162layout(binding = 0) uniform SimulationParams_1 {
Ben Clayton73ced332022-01-21 22:38:16 +0000163 float deltaTime;
164 vec4 seed;
165} sim_params;
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000166
Stephen White46647f12022-02-04 23:09:23 +0000167layout(binding = 1, std430) buffer Particles_1 {
Ben Clayton73ced332022-01-21 22:38:16 +0000168 Particle particles[];
169} data;
Stephen White0b392702022-01-28 22:36:58 +0000170struct UBO {
171 uint width;
Ben Clayton73ced332022-01-21 22:38:16 +0000172};
173
Ryan Harrison3374f432022-03-28 18:01:02 +0000174uniform highp sampler2D tint_symbol_6;
Stephen White0b392702022-01-28 22:36:58 +0000175void simulate(uvec3 GlobalInvocationID) {
Ben Clayton73ced332022-01-21 22:38:16 +0000176 rand_seed = ((sim_params.seed.xy + vec2(GlobalInvocationID.xy)) * sim_params.seed.zw);
177 uint idx = GlobalInvocationID.x;
178 Particle particle = data.particles[idx];
179 particle.velocity.z = (particle.velocity.z - (sim_params.deltaTime * 0.5f));
180 particle.position = (particle.position + (sim_params.deltaTime * particle.velocity));
181 particle.lifetime = (particle.lifetime - sim_params.deltaTime);
182 particle.color.a = smoothstep(0.0f, 0.5f, particle.lifetime);
183 if ((particle.lifetime < 0.0f)) {
184 ivec2 coord = ivec2(0, 0);
185 {
Ryan Harrison3374f432022-03-28 18:01:02 +0000186 for(int level = (textureQueryLevels(tint_symbol_6) - 1); (level > 0); level = (level - 1)) {
187 vec4 probabilites = texelFetch(tint_symbol_6, coord, level);
188 float tint_symbol_5 = rand();
189 vec4 value = vec4(tint_symbol_5);
Stephen Whiteee387402022-02-15 17:52:37 +0000190 bvec4 mask = bvec4(uvec4(greaterThanEqual(value, vec4(0.0f, probabilites.xyz))) & uvec4(lessThan(value, probabilites)));
Ben Clayton73ced332022-01-21 22:38:16 +0000191 coord = (coord * 2);
192 coord.x = (coord.x + (any(mask.yw) ? 1 : 0));
193 coord.y = (coord.y + (any(mask.zw) ? 1 : 0));
194 }
195 }
Ryan Harrison3374f432022-03-28 18:01:02 +0000196 vec2 uv = (vec2(coord) / vec2(textureSize(tint_symbol_6, 0)));
Ben Clayton73ced332022-01-21 22:38:16 +0000197 particle.position = vec3((((uv - 0.5f) * 3.0f) * vec2(1.0f, -1.0f)), 0.0f);
Ryan Harrison3374f432022-03-28 18:01:02 +0000198 particle.color = texelFetch(tint_symbol_6, coord, 0);
199 float tint_symbol_1 = rand();
200 particle.velocity.x = ((tint_symbol_1 - 0.5f) * 0.100000001f);
201 float tint_symbol_2 = rand();
202 particle.velocity.y = ((tint_symbol_2 - 0.5f) * 0.100000001f);
203 float tint_symbol_3 = rand();
204 particle.velocity.z = (tint_symbol_3 * 0.300000012f);
205 float tint_symbol_4 = rand();
206 particle.lifetime = (0.5f + (tint_symbol_4 * 2.0f));
Ben Clayton73ced332022-01-21 22:38:16 +0000207 }
208 data.particles[idx] = particle;
209}
210
Ben Clayton73ced332022-01-21 22:38:16 +0000211layout(local_size_x = 64, local_size_y = 1, local_size_z = 1) in;
Stephen White0b392702022-01-28 22:36:58 +0000212void main() {
213 simulate(gl_GlobalInvocationID);
Ben Clayton73ced332022-01-21 22:38:16 +0000214 return;
215}
Ben Clayton73ced332022-01-21 22:38:16 +0000216Error parsing GLSL shader:
Stephen White2a02b682022-02-28 18:19:47 +0000217ERROR: 0:64: 'textureQueryLevels' : no matching overloaded function found
218ERROR: 0:64: '' : compilation terminated
Ben Clayton73ced332022-01-21 22:38:16 +0000219ERROR: 2 compilation errors. No code generated.
220
221
222
223#version 310 es
Ben Clayton73ced332022-01-21 22:38:16 +0000224
225struct RenderParams {
226 mat4 modelViewProjectionMatrix;
227 vec3 right;
228 vec3 up;
229};
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000230
Ben Clayton73ced332022-01-21 22:38:16 +0000231struct VertexInput {
232 vec3 position;
233 vec4 color;
234 vec2 quad_pos;
235};
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000236
Ben Clayton73ced332022-01-21 22:38:16 +0000237struct VertexOutput {
238 vec4 position;
239 vec4 color;
240 vec2 quad_pos;
241};
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000242
Ben Clayton73ced332022-01-21 22:38:16 +0000243struct SimulationParams {
244 float deltaTime;
245 vec4 seed;
246};
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000247
Ben Clayton73ced332022-01-21 22:38:16 +0000248struct Particle {
249 vec3 position;
250 float lifetime;
251 vec4 color;
252 vec3 velocity;
253};
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000254
Ben Clayton73ced332022-01-21 22:38:16 +0000255struct UBO {
256 uint width;
257};
258
Stephen Whitec8c0e2e2022-01-25 20:06:05 +0000259layout(binding = 3) uniform UBO_1 {
Ben Clayton73ced332022-01-21 22:38:16 +0000260 uint width;
261} ubo;
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000262
Stephen White46647f12022-02-04 23:09:23 +0000263layout(binding = 4, std430) buffer Buffer_1 {
Ben Clayton73ced332022-01-21 22:38:16 +0000264 float weights[];
265} buf_in;
Stephen White46647f12022-02-04 23:09:23 +0000266layout(binding = 5, std430) buffer Buffer_2 {
Ben Clayton73ced332022-01-21 22:38:16 +0000267 float weights[];
268} buf_out;
Stephen Whited5560402022-01-25 00:35:20 +0000269uniform highp sampler2D tex_in_1;
Stephen White0b392702022-01-28 22:36:58 +0000270void import_level(uvec3 coord) {
Ben Clayton73ced332022-01-21 22:38:16 +0000271 uint offset = (coord.x + (coord.y * ubo.width));
Stephen Whited5560402022-01-25 00:35:20 +0000272 buf_out.weights[offset] = texelFetch(tex_in_1, ivec2(coord.xy), 0).w;
Ben Clayton73ced332022-01-21 22:38:16 +0000273}
274
Ben Clayton73ced332022-01-21 22:38:16 +0000275layout(local_size_x = 64, local_size_y = 1, local_size_z = 1) in;
Stephen White0b392702022-01-28 22:36:58 +0000276void main() {
277 import_level(gl_GlobalInvocationID);
Ben Clayton73ced332022-01-21 22:38:16 +0000278 return;
279}
Ben Clayton73ced332022-01-21 22:38:16 +0000280#version 310 es
Ben Clayton73ced332022-01-21 22:38:16 +0000281
282struct RenderParams {
283 mat4 modelViewProjectionMatrix;
284 vec3 right;
285 vec3 up;
286};
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000287
Ben Clayton73ced332022-01-21 22:38:16 +0000288struct VertexInput {
289 vec3 position;
290 vec4 color;
291 vec2 quad_pos;
292};
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000293
Ben Clayton73ced332022-01-21 22:38:16 +0000294struct VertexOutput {
295 vec4 position;
296 vec4 color;
297 vec2 quad_pos;
298};
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000299
Ben Clayton73ced332022-01-21 22:38:16 +0000300struct SimulationParams {
301 float deltaTime;
302 vec4 seed;
303};
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000304
Ben Clayton73ced332022-01-21 22:38:16 +0000305struct Particle {
306 vec3 position;
307 float lifetime;
308 vec4 color;
309 vec3 velocity;
310};
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000311
Ben Clayton73ced332022-01-21 22:38:16 +0000312struct UBO {
313 uint width;
314};
315
Stephen Whitec8c0e2e2022-01-25 20:06:05 +0000316layout(binding = 3) uniform UBO_1 {
Ben Clayton73ced332022-01-21 22:38:16 +0000317 uint width;
318} ubo;
Stephen Whitee2f35ba2022-01-26 16:48:55 +0000319
Stephen White46647f12022-02-04 23:09:23 +0000320layout(binding = 4, std430) buffer Buffer_1 {
Ben Clayton73ced332022-01-21 22:38:16 +0000321 float weights[];
322} buf_in;
Stephen White46647f12022-02-04 23:09:23 +0000323layout(binding = 5, std430) buffer Buffer_2 {
Ben Clayton73ced332022-01-21 22:38:16 +0000324 float weights[];
325} buf_out;
Stephen Whited9b32c32022-02-03 22:39:13 +0000326layout(rgba8) uniform highp writeonly image2D tex_out;
Stephen White0b392702022-01-28 22:36:58 +0000327void export_level(uvec3 coord) {
Stephen Whited9b32c32022-02-03 22:39:13 +0000328 if (all(lessThan(coord.xy, uvec2(imageSize(tex_out))))) {
Ben Clayton73ced332022-01-21 22:38:16 +0000329 uint dst_offset = (coord.x + (coord.y * ubo.width));
330 uint src_offset = ((coord.x * 2u) + ((coord.y * 2u) * ubo.width));
Stephen White0b3dfef2022-02-10 16:22:28 +0000331 float a = buf_in.weights[(src_offset + 0u)];
Ben Clayton73ced332022-01-21 22:38:16 +0000332 float b = buf_in.weights[(src_offset + 1u)];
333 float c = buf_in.weights[((src_offset + 0u) + ubo.width)];
334 float d = buf_in.weights[((src_offset + 1u) + ubo.width)];
Stephen White0b3dfef2022-02-10 16:22:28 +0000335 float sum = dot(vec4(a, b, c, d), vec4(1.0f));
Ben Clayton73ced332022-01-21 22:38:16 +0000336 buf_out.weights[dst_offset] = (sum / 4.0f);
Stephen White0b3dfef2022-02-10 16:22:28 +0000337 vec4 probabilities = (vec4(a, (a + b), ((a + b) + c), sum) / max(sum, 0.0001f));
Stephen Whited9b32c32022-02-03 22:39:13 +0000338 imageStore(tex_out, ivec2(coord.xy), probabilities);
Ben Clayton73ced332022-01-21 22:38:16 +0000339 }
340}
341
342layout(local_size_x = 64, local_size_y = 1, local_size_z = 1) in;
Stephen White0b392702022-01-28 22:36:58 +0000343void main() {
344 export_level(gl_GlobalInvocationID);
Ben Clayton73ced332022-01-21 22:38:16 +0000345 return;
346}