2021-07-23 16:43:01 +00:00
|
|
|
intrinsics/gen/modf/51e4c6.wgsl:29:24 warning: use of deprecated intrinsic
|
|
|
|
var res: vec2<f32> = modf(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_modf(float2 param_0, thread float2* param_1) {
|
|
|
|
float2 whole;
|
|
|
|
float2 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_51e4c6() {
|
|
|
|
float2 arg_1 = 0.0f;
|
2021-07-23 16:43:01 +00:00
|
|
|
float2 res = tint_modf(float2(), &(arg_1));
|
2021-07-08 21:21:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
vertex tint_symbol vertex_main() {
|
2021-06-04 22:17:37 +00:00
|
|
|
modf_51e4c6();
|
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_51e4c6();
|
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_51e4c6();
|
2021-07-08 21:21:27 +00:00
|
|
|
return;
|
2021-06-04 22:17:37 +00:00
|
|
|
}
|
|
|
|
|