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