blob: 583f49f9c5035ea22c8fee723f7dcf215059cff2 [file] [log] [blame]
enable f16;
fn pow_f37b25() {
var res : vec2<f16> = pow(vec2<f16>(1.0h), vec2<f16>(1.0h));
prevent_dce = res;
}
@group(2) @binding(0) var<storage, read_write> prevent_dce : vec2<f16>;
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
pow_f37b25();
return vec4<f32>();
}
@fragment
fn fragment_main() {
pow_f37b25();
}
@compute @workgroup_size(1)
fn compute_main() {
pow_f37b25();
}