dawn-cmake/test/intrinsics/gen/isNormal/b00ab1.wgsl.expected.hlsl
Ben Clayton 35ce0d1993 writer/hlsl: Implement isNormal
Change-Id: I5e5aa81db686b0205ffbf157542c0e85f28b5d5d
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/54323
Commit-Queue: Ben Clayton <bclayton@chromium.org>
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: David Neto <dneto@google.com>
2021-06-16 09:19:36 +00:00

27 lines
586 B
HLSL

void isNormal_b00ab1() {
uint2 tint_isnormal_exponent = asuint(float2(0.0f, 0.0f)) & 0x7f80000;
uint2 tint_isnormal_clamped = clamp(tint_isnormal_exponent, 0x0080000, 0x7f00000);
bool2 res = (tint_isnormal_clamped == tint_isnormal_exponent);
}
struct tint_symbol {
float4 value : SV_Position;
};
tint_symbol vertex_main() {
isNormal_b00ab1();
const tint_symbol tint_symbol_1 = {float4(0.0f, 0.0f, 0.0f, 0.0f)};
return tint_symbol_1;
}
void fragment_main() {
isNormal_b00ab1();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
isNormal_b00ab1();
return;
}