move to bottom of file now
This commit is contained in:
parent
01f6248522
commit
d0294ebec7
1 changed files with 3 additions and 3 deletions
|
@ -609,9 +609,6 @@ proc blur*(target: Image | Mask, radius: float32) =
|
||||||
value += sample * a
|
value += sample * a
|
||||||
target.setValueUnsafe(x, y, (value div 1024 div 255).uint8)
|
target.setValueUnsafe(x, y, (value div 1024 div 255).uint8)
|
||||||
|
|
||||||
when defined(release):
|
|
||||||
{.pop.}
|
|
||||||
|
|
||||||
proc drawUber(
|
proc drawUber(
|
||||||
a, b: Image,
|
a, b: Image,
|
||||||
p, dx, dy: Vec2,
|
p, dx, dy: Vec2,
|
||||||
|
@ -786,3 +783,6 @@ proc shadow*(
|
||||||
result = newImage(mask.width, mask.height)
|
result = newImage(mask.width, mask.height)
|
||||||
result.fill(color)
|
result.fill(color)
|
||||||
result.draw(mask, blendMode = bmMask)
|
result.draw(mask, blendMode = bmMask)
|
||||||
|
|
||||||
|
when defined(release):
|
||||||
|
{.pop.}
|
||||||
|
|
Loading…
Reference in a new issue