blob: 9547ed3150702e4d73240eea51ed1015dc4df2f3 [file] [log] [blame]
James Price807f3ef2023-08-11 00:45:54 +00001@group(1) @binding(0) var arg_0 : texture_storage_2d_array<rgba16uint, read_write>;
2
3fn textureStore_aedea3() {
4 textureStore(arg_0, vec2<u32>(1u), 1i, vec4<u32>(1u));
5}
6
James Price807f3ef2023-08-11 00:45:54 +00007@fragment
8fn fragment_main() {
9 textureStore_aedea3();
10}
11
12@compute @workgroup_size(1)
13fn compute_main() {
14 textureStore_aedea3();
15}