mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-12 16:15:55 +00:00
And call these helpers instead of inlining complex statements. Cleans up output, and helps prevent for-loops decaying to while loops. Change-Id: I6ac31b18ce6c5fac0e54e982f7db3bb298f7edb2 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/58060 Auto-Submit: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@chromium.org> Reviewed-by: David Neto <dneto@google.com>
31 lines
588 B
HLSL
31 lines
588 B
HLSL
bool2 tint_isNormal(float2 param_0) {
|
|
uint2 exponent = asuint(param_0) & 0x7f80000;
|
|
uint2 clamped = clamp(exponent, 0x0080000, 0x7f00000);
|
|
return clamped == exponent;
|
|
}
|
|
|
|
void isNormal_b00ab1() {
|
|
bool2 res = tint_isNormal(float2(0.0f, 0.0f));
|
|
}
|
|
|
|
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;
|
|
}
|