dawn-cmake/test/intrinsics/repeated_use.wgsl.expected.hlsl
Ben Clayton 33c13c6e28 writer/hlsl: Do not emit (void) call_expr;
Just emit `call_expr;` instead.

Fixed: tint:1259
Change-Id: I84a2976d82f891e9263f3e11e5774fcb01ea09bd
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/67381
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Kokoro: Kokoro <noreply+kokoro@google.com>
Commit-Queue: Ben Clayton <bclayton@google.com>
2021-10-25 11:00:44 +00:00

41 lines
1.2 KiB
HLSL

bool4 tint_isNormal(float4 param_0) {
uint4 exponent = asuint(param_0) & 0x7f80000;
uint4 clamped = clamp(exponent, 0x0080000, 0x7f00000);
return clamped == exponent;
}
bool3 tint_isNormal_1(float3 param_0) {
uint3 exponent = asuint(param_0) & 0x7f80000;
uint3 clamped = clamp(exponent, 0x0080000, 0x7f00000);
return clamped == exponent;
}
bool2 tint_isNormal_2(float2 param_0) {
uint2 exponent = asuint(param_0) & 0x7f80000;
uint2 clamped = clamp(exponent, 0x0080000, 0x7f00000);
return clamped == exponent;
}
bool tint_isNormal_3(float param_0) {
uint exponent = asuint(param_0) & 0x7f80000;
uint clamped = clamp(exponent, 0x0080000, 0x7f00000);
return clamped == exponent;
}
[numthreads(1, 1, 1)]
void main() {
tint_isNormal(float4(0.0f, 0.0f, 0.0f, 0.0f));
tint_isNormal(float4((1.0f).xxxx));
tint_isNormal(float4(1.0f, 2.0f, 3.0f, 4.0f));
tint_isNormal_1(float3(0.0f, 0.0f, 0.0f));
tint_isNormal_1(float3((1.0f).xxx));
tint_isNormal_1(float3(1.0f, 2.0f, 3.0f));
tint_isNormal_2(float2(0.0f, 0.0f));
tint_isNormal_2(float2((1.0f).xx));
tint_isNormal_2(float2(1.0f, 2.0f));
tint_isNormal_3(1.0f);
tint_isNormal_3(2.0f);
tint_isNormal_3(3.0f);
return;
}