blob: 22ebe8ab7bcae9bdd4143ad334b81fb84180f73a [file] [log] [blame]
fn pow_04a908() {
var res : vec4<f32> = pow(vec4<f32>(), vec4<f32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
pow_04a908();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
pow_04a908();
}
[[stage(compute)]]
fn compute_main() {
pow_04a908();
}