32 lines
706 B
HLSL
32 lines
706 B
HLSL
intrinsics/gen/frexp/0da285.wgsl:29:18 warning: use of deprecated intrinsic
|
|
var res: f32 = frexp(1.0, &arg_1);
|
|
^^^^^
|
|
|
|
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;
|
|
{
|
|
arg_1 = 0;
|
|
}
|
|
GroupMemoryBarrierWithGroupSync();
|
|
frexp_0da285();
|
|
return;
|
|
}
|