This commit is contained in:
Ryan Oldenburg 2022-01-02 17:11:55 -06:00
parent 95c61ac068
commit 2d3d4c5f95

View file

@ -1609,6 +1609,9 @@ proc fillShapes(
pathHeight = min(image.height, (bounds.y + bounds.h).int)
partitioning = partitionSegments(segments, startY, pathHeight - startY)
if pathWidth == 0:
return
var
coverages = newSeq[uint8](pathWidth)
hits = newSeq[(float32, int16)](partitioning.maxEntryCount)