blob: 7b61578a885133d1449560f4c339f5ffd20622b4 [file] [log] [blame]
fn log_f4c570() {
var res : vec3<f32> = log(vec3<f32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
log_f4c570();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
log_f4c570();
}
[[stage(compute)]]
fn compute_main() {
log_f4c570();
}