blob: ae677594a83d8aee32e37802c89f3748000abc98 [file] [log] [blame]
James Price807f3ef2023-08-11 00:45:54 +00001@group(1) @binding(0) var arg_0 : texture_storage_2d_array<rgba32sint, read_write>;
2
3fn textureStore_f8aaf9() {
4 var arg_1 = vec2<i32>(1i);
5 var arg_2 = 1i;
6 var arg_3 = vec4<i32>(1i);
7 textureStore(arg_0, arg_1, arg_2, arg_3);
8}
9
James Price807f3ef2023-08-11 00:45:54 +000010@fragment
11fn fragment_main() {
12 textureStore_f8aaf9();
13}
14
15@compute @workgroup_size(1)
16fn compute_main() {
17 textureStore_f8aaf9();
18}