blob: 38faefc4298a31821da6a5f2c891bb78c9b943cc [file] [log] [blame]
[[group(1), binding(0)]] var arg_0 : texture_3d<u32>;
fn textureLoad_a9a9f5() {
var res : vec4<u32> = textureLoad(arg_0, vec3<i32>(), 1);
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
textureLoad_a9a9f5();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
textureLoad_a9a9f5();
}
[[stage(compute), workgroup_size(1)]]
fn compute_main() {
textureLoad_a9a9f5();
}