blob: a5124a924600a8dfef2b2c028d21b1eaffff1e4f [file] [log] [blame]
@group(1) @binding(0) var arg_0 : texture_storage_3d<r32float, read_write>;
fn textureStore_6be9e0() {
textureStore(arg_0, vec3<i32>(1i), vec4<f32>(1.0f));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
textureStore_6be9e0();
return vec4<f32>();
}
@fragment
fn fragment_main() {
textureStore_6be9e0();
}
@compute @workgroup_size(1)
fn compute_main() {
textureStore_6be9e0();
}