rounding is very expensive

This commit is contained in:
Ryan Oldenburg 2020-12-09 05:47:14 -06:00
parent 711f1f19b6
commit d6a9429850

View file

@ -460,7 +460,7 @@ proc drawUber(
if smooth:
b.getRgbaSmooth(xFloat, yFloat)
else:
b.getRgbaUnsafe(xFloat.round.int, yFloat.round.int)
b.getRgbaUnsafe(xFloat.int, yFloat.int)
a.setRgbaUnsafe(x, y, mixer(rgba, rgba2))
if blendMode == bmIntersectMask: