blob: 703d869f38b2baa785a1589fa8bceb3ae695173c [file] [log] [blame]
enable f16;
fn pow_fa5429() {
var res : vec3<f16> = pow(vec3<f16>(1.0h), vec3<f16>(1.0h));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
pow_fa5429();
return vec4<f32>();
}
@fragment
fn fragment_main() {
pow_fa5429();
}
@compute @workgroup_size(1)
fn compute_main() {
pow_fa5429();
}