mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-15 09:35:57 +00:00
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>
27 lines
569 B
HLSL
27 lines
569 B
HLSL
void isNormal_c6e880() {
|
|
uint tint_isnormal_exponent = asuint(1.0f) & 0x7f80000;
|
|
uint tint_isnormal_clamped = clamp(tint_isnormal_exponent, 0x0080000, 0x7f00000);
|
|
bool res = (tint_isnormal_clamped == tint_isnormal_exponent);
|
|
}
|
|
|
|
struct tint_symbol {
|
|
float4 value : SV_Position;
|
|
};
|
|
|
|
tint_symbol vertex_main() {
|
|
isNormal_c6e880();
|
|
const tint_symbol tint_symbol_1 = {float4(0.0f, 0.0f, 0.0f, 0.0f)};
|
|
return tint_symbol_1;
|
|
}
|
|
|
|
void fragment_main() {
|
|
isNormal_c6e880();
|
|
return;
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void compute_main() {
|
|
isNormal_c6e880();
|
|
return;
|
|
}
|