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