2021-07-23 16:43:01 +00:00
|
|
|
intrinsics/gen/frexp/d06c2c.wgsl:29:24 warning: use of deprecated intrinsic
|
|
|
|
var res: vec2<f32> = frexp(vec2<f32>(), &arg_1);
|
|
|
|
^^^^^
|
|
|
|
|
2021-07-08 21:21:27 +00:00
|
|
|
#include <metal_stdlib>
|
2021-06-04 22:17:37 +00:00
|
|
|
|
2021-07-08 21:21:27 +00:00
|
|
|
using namespace metal;
|
2021-07-23 16:43:01 +00:00
|
|
|
|
|
|
|
float2 tint_frexp(float2 param_0, thread int2* param_1) {
|
|
|
|
int2 exp;
|
|
|
|
float2 sig = frexp(param_0, exp);
|
|
|
|
*param_1 = exp;
|
|
|
|
return sig;
|
|
|
|
}
|
|
|
|
|
2021-06-04 22:17:37 +00:00
|
|
|
struct tint_symbol {
|
2021-07-08 21:21:27 +00:00
|
|
|
float4 value [[position]];
|
2021-06-04 22:17:37 +00:00
|
|
|
};
|
|
|
|
|
2021-07-08 21:21:27 +00:00
|
|
|
void frexp_d06c2c() {
|
|
|
|
int2 arg_1 = 0;
|
2021-07-23 16:43:01 +00:00
|
|
|
float2 res = tint_frexp(float2(), &(arg_1));
|
2021-07-08 21:21:27 +00:00
|
|
|
}
|
|
|
|
|
2021-08-04 22:15:28 +00:00
|
|
|
float4 vertex_main_inner() {
|
2021-06-04 22:17:37 +00:00
|
|
|
frexp_d06c2c();
|
2021-08-04 22:15:28 +00:00
|
|
|
return float4();
|
|
|
|
}
|
|
|
|
|
|
|
|
vertex tint_symbol vertex_main() {
|
|
|
|
float4 const inner_result = vertex_main_inner();
|
|
|
|
tint_symbol wrapper_result = {};
|
|
|
|
wrapper_result.value = inner_result;
|
|
|
|
return wrapper_result;
|
2021-06-04 22:17:37 +00:00
|
|
|
}
|
|
|
|
|
2021-07-08 21:21:27 +00:00
|
|
|
fragment void fragment_main() {
|
2021-06-04 22:17:37 +00:00
|
|
|
frexp_d06c2c();
|
2021-07-08 21:21:27 +00:00
|
|
|
return;
|
2021-06-04 22:17:37 +00:00
|
|
|
}
|
|
|
|
|
2021-07-08 21:21:27 +00:00
|
|
|
kernel void compute_main() {
|
2021-06-04 22:17:37 +00:00
|
|
|
frexp_d06c2c();
|
2021-07-08 21:21:27 +00:00
|
|
|
return;
|
2021-06-04 22:17:37 +00:00
|
|
|
}
|
|
|
|
|