mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-14 17:16:01 +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>
31 lines
508 B
HLSL
31 lines
508 B
HLSL
void acosh_e38f5c() {
|
|
float3 res = (1.316957951f).xxx;
|
|
}
|
|
|
|
struct tint_symbol {
|
|
float4 value : SV_Position;
|
|
};
|
|
|
|
float4 vertex_main_inner() {
|
|
acosh_e38f5c();
|
|
return (0.0f).xxxx;
|
|
}
|
|
|
|
tint_symbol vertex_main() {
|
|
const float4 inner_result = vertex_main_inner();
|
|
tint_symbol wrapper_result = (tint_symbol)0;
|
|
wrapper_result.value = inner_result;
|
|
return wrapper_result;
|
|
}
|
|
|
|
void fragment_main() {
|
|
acosh_e38f5c();
|
|
return;
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void compute_main() {
|
|
acosh_e38f5c();
|
|
return;
|
|
}
|