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-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_353f7d() {
|
|
|
|
float arg_1 = 0.0f;
|
|
|
|
float res = modf(1.0f, *(&(arg_1)));
|
|
|
|
}
|
|
|
|
|
|
|
|
vertex tint_symbol vertex_main() {
|
2021-06-04 22:17:37 +00:00
|
|
|
modf_353f7d();
|
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_353f7d();
|
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_353f7d();
|
2021-07-08 21:21:27 +00:00
|
|
|
return;
|
2021-06-04 22:17:37 +00:00
|
|
|
}
|
|
|
|
|