blob: f7345593247c1c31be9fd5d5489d6ae3e2609c99 [file] [log] [blame]
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();
}