blob: 0c88978b134ab791552d977c4e4168b6ac8d45d0 [file] [log] [blame]
fn round_773a8f() {
var res = round(3.5);
}
@fragment
fn fragment_main() {
round_773a8f();
}
@compute @workgroup_size(1)
fn compute_main() {
round_773a8f();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
round_773a8f();
return out;
}