2021-06-16 09:19:36 +00:00
|
|
|
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);
|
2021-06-03 11:26:17 +00:00
|
|
|
}
|
|
|
|
|
2021-06-16 09:19:36 +00:00
|
|
|
struct tint_symbol {
|
2021-06-16 09:19:36 +00:00
|
|
|
float4 value : SV_Position;
|
2021-06-16 09:19:36 +00:00
|
|
|
};
|
|
|
|
|
2021-06-16 09:19:36 +00:00
|
|
|
tint_symbol vertex_main() {
|
2021-06-03 11:26:17 +00:00
|
|
|
isNormal_c6e880();
|
2021-06-16 09:19:36 +00:00
|
|
|
const tint_symbol tint_symbol_1 = {float4(0.0f, 0.0f, 0.0f, 0.0f)};
|
2021-06-16 09:19:36 +00:00
|
|
|
return tint_symbol_1;
|
2021-06-03 11:26:17 +00:00
|
|
|
}
|
|
|
|
|
2021-06-16 09:19:36 +00:00
|
|
|
void fragment_main() {
|
2021-06-03 11:26:17 +00:00
|
|
|
isNormal_c6e880();
|
2021-06-16 09:19:36 +00:00
|
|
|
return;
|
2021-06-03 11:26:17 +00:00
|
|
|
}
|
|
|
|
|
2021-06-16 09:19:36 +00:00
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void compute_main() {
|
2021-06-03 11:26:17 +00:00
|
|
|
isNormal_c6e880();
|
2021-06-16 09:19:36 +00:00
|
|
|
return;
|
2021-06-03 11:26:17 +00:00
|
|
|
}
|