mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-05 19:55:37 +00:00
Helps with triaging. Change-Id: I596fb33d9d60e2e364175cdd0ff1966f71423e99 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/103640 Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Antonio Maiorano <amaiorano@google.com> Reviewed-by: Ben Clayton <bclayton@google.com>
38 lines
805 B
HLSL
38 lines
805 B
HLSL
SKIP: FAILED
|
|
|
|
void saturate_e8df56() {
|
|
float16_t arg_0 = float16_t(0.0h);
|
|
float16_t res = saturate(arg_0);
|
|
}
|
|
|
|
struct tint_symbol {
|
|
float4 value : SV_Position;
|
|
};
|
|
|
|
float4 vertex_main_inner() {
|
|
saturate_e8df56();
|
|
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() {
|
|
saturate_e8df56();
|
|
return;
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void compute_main() {
|
|
saturate_e8df56();
|
|
return;
|
|
}
|
|
FXC validation failure:
|
|
C:\src\dawn\test\tint\Shader@0x000001DB75B70300(2,3-11): error X3000: unrecognized identifier 'float16_t'
|
|
C:\src\dawn\test\tint\Shader@0x000001DB75B70300(2,13-17): error X3000: unrecognized identifier 'arg_0'
|
|
|