dawn-cmake/test/tint/builtins/gen/tanh/5663c5.wgsl.expected.wgsl

20 lines
305 B
WebGPU Shading Language
Raw Normal View History

fn tanh_5663c5() {
var res : vec4<f32> = tanh(vec4<f32>());
}
@stage(vertex)
fn vertex_main() -> @builtin(position) vec4<f32> {
tanh_5663c5();
return vec4<f32>();
}
@stage(fragment)
fn fragment_main() {
tanh_5663c5();
}
@stage(compute) @workgroup_size(1)
fn compute_main() {
tanh_5663c5();
}