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