blob: 0596515dea8d869d01867c17638d74777956b6c2 [file] [log] [blame]
James Price807f3ef2023-08-11 00:45:54 +00001enable chromium_experimental_read_write_storage_texture;
2
3@group(1) @binding(0) var arg_0 : texture_storage_2d_array<rg32uint, read_write>;
4
5fn textureStore_75bbd5() {
6 var arg_1 = vec2<i32>(1i);
7 var arg_2 = 1u;
8 var arg_3 = vec4<u32>(1u);
9 textureStore(arg_0, arg_1, arg_2, arg_3);
10}
11
12@vertex
13fn vertex_main() -> @builtin(position) vec4<f32> {
14 textureStore_75bbd5();
15 return vec4<f32>();
16}
17
18@fragment
19fn fragment_main() {
20 textureStore_75bbd5();
21}
22
23@compute @workgroup_size(1)
24fn compute_main() {
25 textureStore_75bbd5();
26}