blob: a6ea686ed09471d8a1d9c294738abcd57b5fdd86 [file] [log] [blame]
struct modf_result_vec2_f32 {
float2 fract;
float2 whole;
};
[numthreads(1, 1, 1)]
void main() {
float2 tint_symbol = float2(1.25f, 3.75f);
float2 v = (0.0f).xx;
modf_result_vec2_f32 res = {modf(tint_symbol, v), v};
float2 fract = res.fract;
float2 whole = res.whole;
}