blob: 11c9f643d398ff5de20e717cb96f12bf3c9b92ef [file] [log] [blame]
fn pack4x8snorm_4d22e7() {
var res : u32 = pack4x8snorm(vec4<f32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
pack4x8snorm_4d22e7();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
pack4x8snorm_4d22e7();
}
[[stage(compute)]]
fn compute_main() {
pack4x8snorm_4d22e7();
}