blob: f66c6dced7ce2bfb4c2797b64fd2894d4176707c [file] [log] [blame]
enable chromium_experimental_read_write_storage_texture;
@group(1) @binding(0) var arg_0 : texture_storage_2d_array<r32uint, read_write>;
fn textureStore_abdd21() {
textureStore(arg_0, vec2<u32>(1u), 1u, vec4<u32>(1u));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
textureStore_abdd21();
return vec4<f32>();
}
@fragment
fn fragment_main() {
textureStore_abdd21();
}
@compute @workgroup_size(1)
fn compute_main() {
textureStore_abdd21();
}