dawn-cmake/test/intrinsics/gen/pack4x8unorm/95c456.wgsl.expected.wgsl

20 lines
339 B
WebGPU Shading Language

fn pack4x8unorm_95c456() {
var res : u32 = pack4x8unorm(vec4<f32>());
}
@stage(vertex)
fn vertex_main() -> @builtin(position) vec4<f32> {
pack4x8unorm_95c456();
return vec4<f32>();
}
@stage(fragment)
fn fragment_main() {
pack4x8unorm_95c456();
}
@stage(compute) @workgroup_size(1)
fn compute_main() {
pack4x8unorm_95c456();
}