Ben Clayton | c0af5c5 | 2022-06-02 14:36:10 +0000 | [diff] [blame] | 1 | SKIP: FAILED |
| 2 | |
| 3 | #version 310 es |
| 4 | |
Stephen White | 1d04cf8 | 2023-01-07 17:19:21 +0000 | [diff] [blame] | 5 | layout(rg32i) uniform highp writeonly iimage2D arg_0; |
Ben Clayton | c0af5c5 | 2022-06-02 14:36:10 +0000 | [diff] [blame] | 6 | void textureStore_d73b5c() { |
| 7 | int arg_1 = 1; |
Stephen White | 987902e | 2022-12-15 16:42:28 +0000 | [diff] [blame] | 8 | ivec4 arg_2 = ivec4(1); |
Stephen White | 1d04cf8 | 2023-01-07 17:19:21 +0000 | [diff] [blame] | 9 | imageStore(arg_0, ivec2(arg_1, 0), arg_2); |
Ben Clayton | c0af5c5 | 2022-06-02 14:36:10 +0000 | [diff] [blame] | 10 | } |
| 11 | |
| 12 | vec4 vertex_main() { |
| 13 | textureStore_d73b5c(); |
| 14 | return vec4(0.0f); |
| 15 | } |
| 16 | |
| 17 | void main() { |
| 18 | gl_PointSize = 1.0; |
| 19 | vec4 inner_result = vertex_main(); |
| 20 | gl_Position = inner_result; |
| 21 | gl_Position.y = -(gl_Position.y); |
| 22 | gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w); |
| 23 | return; |
| 24 | } |
Stephen White | d2eb05c | 2023-10-16 20:34:20 +0000 | [diff] [blame] | 25 | error: Error parsing GLSL shader: |
Ben Clayton | c0af5c5 | 2022-06-02 14:36:10 +0000 | [diff] [blame] | 26 | ERROR: 0:3: 'image load-store format' : not supported with this profile: es |
| 27 | ERROR: 0:3: '' : compilation terminated |
| 28 | ERROR: 2 compilation errors. No code generated. |
| 29 | |
| 30 | |
| 31 | |
| 32 | #version 310 es |
Stephen White | 11e786e | 2023-08-24 22:01:10 +0000 | [diff] [blame] | 33 | precision highp float; |
Ben Clayton | 448c01b | 2024-02-28 00:23:17 +0000 | [diff] [blame] | 34 | precision highp int; |
Ben Clayton | c0af5c5 | 2022-06-02 14:36:10 +0000 | [diff] [blame] | 35 | |
Stephen White | 1d04cf8 | 2023-01-07 17:19:21 +0000 | [diff] [blame] | 36 | layout(rg32i) uniform highp writeonly iimage2D arg_0; |
Ben Clayton | c0af5c5 | 2022-06-02 14:36:10 +0000 | [diff] [blame] | 37 | void textureStore_d73b5c() { |
| 38 | int arg_1 = 1; |
Stephen White | 987902e | 2022-12-15 16:42:28 +0000 | [diff] [blame] | 39 | ivec4 arg_2 = ivec4(1); |
Stephen White | 1d04cf8 | 2023-01-07 17:19:21 +0000 | [diff] [blame] | 40 | imageStore(arg_0, ivec2(arg_1, 0), arg_2); |
Ben Clayton | c0af5c5 | 2022-06-02 14:36:10 +0000 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | void fragment_main() { |
| 44 | textureStore_d73b5c(); |
| 45 | } |
| 46 | |
| 47 | void main() { |
| 48 | fragment_main(); |
| 49 | return; |
| 50 | } |
Stephen White | d2eb05c | 2023-10-16 20:34:20 +0000 | [diff] [blame] | 51 | error: Error parsing GLSL shader: |
Ben Clayton | 448c01b | 2024-02-28 00:23:17 +0000 | [diff] [blame] | 52 | ERROR: 0:5: 'image load-store format' : not supported with this profile: es |
| 53 | ERROR: 0:5: '' : compilation terminated |
Ben Clayton | c0af5c5 | 2022-06-02 14:36:10 +0000 | [diff] [blame] | 54 | ERROR: 2 compilation errors. No code generated. |
| 55 | |
| 56 | |
| 57 | |
| 58 | #version 310 es |
| 59 | |
Stephen White | 1d04cf8 | 2023-01-07 17:19:21 +0000 | [diff] [blame] | 60 | layout(rg32i) uniform highp writeonly iimage2D arg_0; |
Ben Clayton | c0af5c5 | 2022-06-02 14:36:10 +0000 | [diff] [blame] | 61 | void textureStore_d73b5c() { |
| 62 | int arg_1 = 1; |
Stephen White | 987902e | 2022-12-15 16:42:28 +0000 | [diff] [blame] | 63 | ivec4 arg_2 = ivec4(1); |
Stephen White | 1d04cf8 | 2023-01-07 17:19:21 +0000 | [diff] [blame] | 64 | imageStore(arg_0, ivec2(arg_1, 0), arg_2); |
Ben Clayton | c0af5c5 | 2022-06-02 14:36:10 +0000 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | void compute_main() { |
| 68 | textureStore_d73b5c(); |
| 69 | } |
| 70 | |
| 71 | layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; |
| 72 | void main() { |
| 73 | compute_main(); |
| 74 | return; |
| 75 | } |
Stephen White | d2eb05c | 2023-10-16 20:34:20 +0000 | [diff] [blame] | 76 | error: Error parsing GLSL shader: |
Ben Clayton | c0af5c5 | 2022-06-02 14:36:10 +0000 | [diff] [blame] | 77 | ERROR: 0:3: 'image load-store format' : not supported with this profile: es |
| 78 | ERROR: 0:3: '' : compilation terminated |
| 79 | ERROR: 2 compilation errors. No code generated. |
| 80 | |
| 81 | |
| 82 | |