dawn-cmake/test/intrinsics/gen/textureLoad/dbd554.wgsl.expected.wgsl

22 lines
435 B
WebGPU Shading Language
Raw Normal View History

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