mask yMin yMax better

This commit is contained in:
Ryan Oldenburg 2021-12-13 02:25:58 -06:00
parent 1214861870
commit 85780637fc

View file

@ -768,17 +768,12 @@ proc drawUber(
)
# Determine where we should start and stop drawing in the y dimension
var yMin, yMax: int
if blendMode == bmMask:
yMin = 0
yMax = a.height
else:
var
yMin = a.height
yMax = 0
for segment in perimeter:
yMin = min(yMin, segment.at.y.floor.int)
yMax = max(yMax, segment.at.y.ceil.int)
for segment in perimeter:
yMin = min(yMin, segment.at.y.floor.int)
yMax = max(yMax, segment.at.y.ceil.int)
yMin = yMin.clamp(0, a.height)
yMax = yMax.clamp(0, a.height)
@ -787,6 +782,10 @@ proc drawUber(
else: # a is a Mask
let masker = blendMode.masker()
if blendMode == bmMask:
if yMin > 0:
zeroMem(a.data[0].addr, 4 * yMin * a.width)
for y in yMin ..< yMax:
# Determine where we should start and stop drawing in the x dimension
var
@ -1007,6 +1006,10 @@ proc drawUber(
if a.width - xMax > 0:
zeroMem(a.data[a.dataIndex(xMax, y)].addr, 4 * (a.width - xMax))
if blendMode == bmMask:
if a.height - yMax > 0:
zeroMem(a.data[a.dataIndex(0, yMax)].addr, 4 * a.width * (a.height - yMax))
proc draw*(
a, b: Image, transform = mat3(), blendMode = bmNormal
) {.inline, raises: [PixieError].} =