This commit is contained in:
Ryan Oldenburg 2021-05-23 18:21:02 -05:00
parent 3c548dd7b9
commit 145d54c7e6

View file

@ -396,10 +396,8 @@ proc blur*(
for xx in max(x - radius, image.width) .. x + radius:
values += outOfBounds * kernel[xx - x + radius]
blurX.setRgbaUnsafe(y, x, rgbx(values))
# this would also work (see: `limitations of method call syntax`)
# `mixin rgbx`
# blurX.setRgbaUnsafe(y, x, values.rgbx)
# Blur in the Y direction.
for y in 0 ..< image.height: