41 lines
749 B
Plaintext
41 lines
749 B
Plaintext
intrinsics/gen/frexp/5a141e.wgsl:29:24 warning: use of deprecated intrinsic
|
|
var res: vec3<f32> = frexp(vec3<f32>(), &arg_1);
|
|
^^^^^
|
|
|
|
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
|
|
float3 tint_frexp(float3 param_0, thread int3* param_1) {
|
|
int3 exp;
|
|
float3 sig = frexp(param_0, exp);
|
|
*param_1 = exp;
|
|
return sig;
|
|
}
|
|
|
|
struct tint_symbol {
|
|
float4 value [[position]];
|
|
};
|
|
|
|
void frexp_5a141e() {
|
|
int3 arg_1 = 0;
|
|
float3 res = tint_frexp(float3(), &(arg_1));
|
|
}
|
|
|
|
vertex tint_symbol vertex_main() {
|
|
frexp_5a141e();
|
|
tint_symbol const tint_symbol_1 = {.value=float4()};
|
|
return tint_symbol_1;
|
|
}
|
|
|
|
fragment void fragment_main() {
|
|
frexp_5a141e();
|
|
return;
|
|
}
|
|
|
|
kernel void compute_main() {
|
|
frexp_5a141e();
|
|
return;
|
|
}
|
|
|