dawn-cmake/test/tint/builtins/gen/literal/textureLoad/a583c9.wgsl.expected.wgsl

22 lines
395 B
WebGPU Shading Language

@group(1) @binding(0) var arg_0 : texture_multisampled_2d<f32>;
fn textureLoad_a583c9() {
var res : vec4<f32> = textureLoad(arg_0, vec2<i32>(), 1i);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
textureLoad_a583c9();
return vec4<f32>();
}
@fragment
fn fragment_main() {
textureLoad_a583c9();
}
@compute @workgroup_size(1)
fn compute_main() {
textureLoad_a583c9();
}