dawn-cmake/test/intrinsics/gen/cosh/c13756.wgsl.expected.wgsl

20 lines
298 B
WebGPU Shading Language
Raw Normal View History

fn cosh_c13756() {
var res : vec2<f32> = cosh(vec2<f32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
cosh_c13756();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
cosh_c13756();
}
[[stage(compute)]]
fn compute_main() {
cosh_c13756();
}