dawn-cmake/test/tint/builtins/gen/literal/tanh/06a4fe.wgsl.expected.msl
dan sinclair b77332edd2 Add const-eval for tan and tanh
This CL adds const-eval for `tan` and `tanh`.

Bug: tint:1581
Change-Id: I3d3506a6e7462bba1557cb88065d696ddc21b0f6
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/109562
Commit-Queue: Dan Sinclair <dsinclair@chromium.org>
Reviewed-by: Antonio Maiorano <amaiorano@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
2022-11-10 15:55:00 +00:00

34 lines
542 B
Plaintext

#include <metal_stdlib>
using namespace metal;
void tanh_06a4fe() {
half3 res = half3(0.761230469h);
}
struct tint_symbol {
float4 value [[position]];
};
float4 vertex_main_inner() {
tanh_06a4fe();
return float4(0.0f);
}
vertex tint_symbol vertex_main() {
float4 const inner_result = vertex_main_inner();
tint_symbol wrapper_result = {};
wrapper_result.value = inner_result;
return wrapper_result;
}
fragment void fragment_main() {
tanh_06a4fe();
return;
}
kernel void compute_main() {
tanh_06a4fe();
return;
}