#include <metal_stdlib> | |
using namespace metal; | |
struct modf_result_vec2_f32 { | |
float2 fract; | |
float2 whole; | |
}; | |
void modf_2d50da() { | |
modf_result_vec2_f32 res = modf_result_vec2_f32{.fract=float2(-0.5f), .whole=float2(-1.0f)}; | |
} | |
vertex float4 vertex_main() { | |
modf_2d50da(); | |
return float4(0.0f); | |
} | |
fragment void fragment_main() { | |
modf_2d50da(); | |
} | |
kernel void compute_main() { | |
modf_2d50da(); | |
} |