Ben Clayton | da5424b | 2022-10-24 23:58:53 +0000 | [diff] [blame] | 1 | @group(1) @binding(0) var arg_0 : texture_storage_2d<rg32uint, write>; |
| 2 | |
| 3 | fn textureStore_506a71() { |
Ben Clayton | 4b60615 | 2022-11-04 17:06:03 +0000 | [diff] [blame] | 4 | textureStore(arg_0, vec2<u32>(1u), vec4<u32>(1u)); |
Ben Clayton | da5424b | 2022-10-24 23:58:53 +0000 | [diff] [blame] | 5 | } |
| 6 | |
| 7 | @vertex |
| 8 | fn vertex_main() -> @builtin(position) vec4<f32> { |
| 9 | textureStore_506a71(); |
| 10 | return vec4<f32>(); |
| 11 | } |
| 12 | |
| 13 | @fragment |
| 14 | fn fragment_main() { |
| 15 | textureStore_506a71(); |
| 16 | } |
| 17 | |
| 18 | @compute @workgroup_size(1) |
| 19 | fn compute_main() { |
| 20 | textureStore_506a71(); |
| 21 | } |