blob: 55aedf3f6268108017db33c649984ccdae41d19f [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();
}