Home | History | Annotate | Download | only in glsl

Lines Matching defs:rounded

52    int rounded = IROUND(val);
55 if (rounded % 2 != 0)
56 rounded += val > 0 ? -1 : 1;
59 return rounded;