mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-15 17:45:58 +00:00
This CL adds const-eval for the `acosh` test case. The generation of `f16` values into test files is also fixed because `acosh` requires the value to be `>= 1.0` Bug: tint:1581 Change-Id: Iba2ca4d9d114034845475679346f042c8c66e571 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/109341 Reviewed-by: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Dan Sinclair <dsinclair@chromium.org>
39 lines
642 B
Plaintext
39 lines
642 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
float tint_acosh(float x) {
|
|
return select(acosh(x), 0.0f, (x < 1.0f));
|
|
}
|
|
|
|
void acosh_ecf2d1() {
|
|
float arg_0 = 2.0f;
|
|
float res = tint_acosh(arg_0);
|
|
}
|
|
|
|
struct tint_symbol {
|
|
float4 value [[position]];
|
|
};
|
|
|
|
float4 vertex_main_inner() {
|
|
acosh_ecf2d1();
|
|
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() {
|
|
acosh_ecf2d1();
|
|
return;
|
|
}
|
|
|
|
kernel void compute_main() {
|
|
acosh_ecf2d1();
|
|
return;
|
|
}
|
|
|