consistent versions arcoss all combos

This commit is contained in:
Ryan Oldenburg 2021-02-08 20:06:07 -06:00
parent e198e521d6
commit 788b5a0821

View file

@ -365,12 +365,20 @@ proc draw*(
) {.inline.} =
image.drawCorrect(mask, translate(pos), blendMode)
proc draw*(a, b: Mask, mat = mat3(), blendMode = bmMask) =
proc draw*(a, b: Mask, mat: Mat3, blendMode = bmMask) =
a.drawCorrect(b, mat, blendMode)
proc draw*(mask: Mask, image: Image, mat = mat3(), blendMode = bmMask) =
proc draw*(a, b: Mask, pos = vec2(0, 0), blendMode = bmMask) {.inline.} =
a.draw(b, translate(pos), blendMode)
proc draw*(mask: Mask, image: Image, mat: Mat3, blendMode = bmMask) =
mask.drawCorrect(image, mat, blendMode)
proc draw*(
mask: Mask, image: Image, pos = vec2(0, 0), blendMode = bmMask
) {.inline.} =
mask.draw(image, translate(pos), blendMode)
when defined(release):
{.pop.}