blob: cbc3322ada152e385ffe8a46b17e2bafc8b8d2fb [file] [log] [blame]
dan sinclair562d9b72024-09-17 22:33:56 +00001#version 310 es
2precision highp float;
3precision highp int;
dan sinclair6e93ca52024-08-28 23:58:04 +00004
dan sinclair562d9b72024-09-17 22:33:56 +00005layout(binding = 0, std430)
James Price71c1d542024-10-10 23:01:19 +00006buffer prevent_dce_block_1_ssbo {
7 vec2 inner;
dan sinclair562d9b72024-09-17 22:33:56 +00008} v;
9vec2 bitcast_b77573() {
10 ivec2 arg_0 = ivec2(1);
11 vec2 res = intBitsToFloat(arg_0);
12 return res;
13}
14void main() {
James Price71c1d542024-10-10 23:01:19 +000015 v.inner = bitcast_b77573();
dan sinclair562d9b72024-09-17 22:33:56 +000016}
17#version 310 es
dan sinclair6e93ca52024-08-28 23:58:04 +000018
dan sinclair562d9b72024-09-17 22:33:56 +000019layout(binding = 0, std430)
James Price71c1d542024-10-10 23:01:19 +000020buffer prevent_dce_block_1_ssbo {
21 vec2 inner;
dan sinclair562d9b72024-09-17 22:33:56 +000022} v;
23vec2 bitcast_b77573() {
24 ivec2 arg_0 = ivec2(1);
25 vec2 res = intBitsToFloat(arg_0);
26 return res;
27}
28layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
29void main() {
James Price71c1d542024-10-10 23:01:19 +000030 v.inner = bitcast_b77573();
dan sinclair562d9b72024-09-17 22:33:56 +000031}
32#version 310 es
33
34
35struct VertexOutput {
36 vec4 pos;
37 vec2 prevent_dce;
38};
39
40layout(location = 0) flat out vec2 vertex_main_loc0_Output;
41vec2 bitcast_b77573() {
42 ivec2 arg_0 = ivec2(1);
43 vec2 res = intBitsToFloat(arg_0);
44 return res;
45}
46VertexOutput vertex_main_inner() {
47 VertexOutput tint_symbol = VertexOutput(vec4(0.0f), vec2(0.0f));
48 tint_symbol.pos = vec4(0.0f);
49 tint_symbol.prevent_dce = bitcast_b77573();
50 return tint_symbol;
51}
52void main() {
53 VertexOutput v = vertex_main_inner();
54 gl_Position = v.pos;
55 gl_Position[1u] = -(gl_Position.y);
56 gl_Position[2u] = ((2.0f * gl_Position.z) - gl_Position.w);
57 vertex_main_loc0_Output = v.prevent_dce;
58 gl_PointSize = 1.0f;
59}