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