22 lines
321 B
WebGPU Shading Language
22 lines
321 B
WebGPU Shading Language
enable f16;
|
|
|
|
fn saturate_cd2028() {
|
|
var res : vec2<f16> = saturate(vec2<f16>(2.0h));
|
|
}
|
|
|
|
@vertex
|
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
|
saturate_cd2028();
|
|
return vec4<f32>();
|
|
}
|
|
|
|
@fragment
|
|
fn fragment_main() {
|
|
saturate_cd2028();
|
|
}
|
|
|
|
@compute @workgroup_size(1)
|
|
fn compute_main() {
|
|
saturate_cd2028();
|
|
}
|