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