blob: 278de47e79d29121ae05632969b6cf474b12dc92 [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)]]
fn compute_main() {
pack4x8unorm_95c456();
}