2021-07-23 16:43:01 +00:00
|
|
|
intrinsics/gen/modf/f90945.wgsl:29:18 warning: use of deprecated intrinsic
|
|
|
|
var res: f32 = modf(1.0, &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
|
|
|
|
|
|
|
float tint_modf(float param_0, thread float* param_1) {
|
|
|
|
float whole;
|
|
|
|
float fract = modf(param_0, whole);
|
|
|
|
*param_1 = whole;
|
|
|
|
return fract;
|
|
|
|
}
|
|
|
|
|
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 modf_f90945() {
|
|
|
|
float arg_1 = 0.0f;
|
2021-07-23 16:43:01 +00:00
|
|
|
float res = tint_modf(1.0f, &(arg_1));
|
2021-07-08 21:21:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
vertex tint_symbol vertex_main() {
|
2021-06-04 22:17:37 +00:00
|
|
|
modf_f90945();
|
2021-07-08 21:21:27 +00:00
|
|
|
tint_symbol const tint_symbol_1 = {.value=float4()};
|
2021-06-04 22:17:37 +00:00
|
|
|
return tint_symbol_1;
|
|
|
|
}
|
|
|
|
|
2021-07-08 21:21:27 +00:00
|
|
|
fragment void fragment_main() {
|
2021-06-04 22:17:37 +00:00
|
|
|
modf_f90945();
|
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
|
|
|
modf_f90945();
|
2021-07-08 21:21:27 +00:00
|
|
|
return;
|
2021-06-04 22:17:37 +00:00
|
|
|
}
|
|
|
|
|