28 lines
605 B
HLSL
28 lines
605 B
HLSL
float tint_frexp(float param_0, inout int param_1) {
|
|
float float_exp;
|
|
float significand = frexp(param_0, float_exp);
|
|
param_1 = int(float_exp);
|
|
return significand;
|
|
}
|
|
|
|
groupshared int arg_1;
|
|
|
|
void frexp_0da285() {
|
|
float res = tint_frexp(1.0f, arg_1);
|
|
}
|
|
|
|
struct tint_symbol_1 {
|
|
uint local_invocation_index : SV_GroupIndex;
|
|
};
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void compute_main(tint_symbol_1 tint_symbol) {
|
|
const uint local_invocation_index = tint_symbol.local_invocation_index;
|
|
if ((local_invocation_index == 0u)) {
|
|
arg_1 = 0;
|
|
}
|
|
GroupMemoryBarrierWithGroupSync();
|
|
frexp_0da285();
|
|
return;
|
|
}
|