blob: 3f9b4c711f56605cd8d9e9308641fb0f6ac0534d [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct modf_result_vec2_f32 {
float2 fract;
float2 whole;
};
kernel void tint_symbol() {
modf_result_vec2_f32 const res = modf_result_vec2_f32{.fract=float2(0.25f, 0.75f), .whole=float2(1.0f, 3.0f)};
float2 const fract = res.fract;
float2 const whole = res.whole;
}