dawn-cmake/test/intrinsics/gen/textureLoad/3c9587.wgsl.expected.wgsl

22 lines
427 B
WebGPU Shading Language
Raw Normal View History

[[group(1), binding(0)]] var arg_0 : [[access(read)]] texture_storage_2d<rgba8unorm>;
fn textureLoad_3c9587() {
var res : vec4<f32> = textureLoad(arg_0, vec2<i32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
textureLoad_3c9587();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
textureLoad_3c9587();
}
[[stage(compute)]]
fn compute_main() {
textureLoad_3c9587();
}