blob: 29e2d28cbbd8128dc52a38223e749bc68c062f59 [file] [log] [blame]
Ben Claytonda5424b2022-10-24 23:58:53 +00001@group(1) @binding(0) var arg_0 : texture_storage_2d_array<rg32sint, write>;
2
3fn textureStore_4c454f() {
Ben Clayton4b606152022-11-04 17:06:03 +00004 var arg_1 = vec2<u32>(1u);
Ben Claytonda5424b2022-10-24 23:58:53 +00005 var arg_2 = 1u;
Ben Clayton4b606152022-11-04 17:06:03 +00006 var arg_3 = vec4<i32>(1i);
Ben Claytonda5424b2022-10-24 23:58:53 +00007 textureStore(arg_0, arg_1, arg_2, arg_3);
8}
9
10@vertex
11fn vertex_main() -> @builtin(position) vec4<f32> {
12 textureStore_4c454f();
13 return vec4<f32>();
14}
15
16@fragment
17fn fragment_main() {
18 textureStore_4c454f();
19}
20
21@compute @workgroup_size(1)
22fn compute_main() {
23 textureStore_4c454f();
24}