blob: 29abb44613aad6cecc31a0da43ae1d80f0ee180f [file] [log] [blame]
fn trunc_117396() {
var res = trunc(vec3(1.5));
}
@fragment
fn fragment_main() {
trunc_117396();
}
@compute @workgroup_size(1)
fn compute_main() {
trunc_117396();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
trunc_117396();
return out;
}