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