blob: 59d771df60da502c3cd5647a9794763a85972c62 [file] [log] [blame]
Ben Claytonda5424b2022-10-24 23:58:53 +00001@group(1) @binding(0) var arg_0 : texture_storage_2d<rg32uint, write>;
2
3fn textureStore_506a71() {
Ben Clayton4b606152022-11-04 17:06:03 +00004 textureStore(arg_0, vec2<u32>(1u), vec4<u32>(1u));
Ben Claytonda5424b2022-10-24 23:58:53 +00005}
6
7@vertex
8fn vertex_main() -> @builtin(position) vec4<f32> {
9 textureStore_506a71();
10 return vec4<f32>();
11}
12
13@fragment
14fn fragment_main() {
15 textureStore_506a71();
16}
17
18@compute @workgroup_size(1)
19fn compute_main() {
20 textureStore_506a71();
21}