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