This commit is contained in:
Ryan Oldenburg 2022-07-31 21:14:21 -05:00
parent 31bd588b17
commit 3667557618

View file

@ -414,7 +414,7 @@ proc magnifyBy2Neon*(image: Image, power = 1): Image {.simd.} =
result.width * 4
)
proc blitLineNormalNeon*(
proc blendLineNormalNeon*(
a, b: ptr UncheckedArray[ColorRGBX], len: int
) {.simd.} =
var i: int
@ -463,7 +463,7 @@ proc blitLineNormalNeon*(
for i in i ..< len:
a[i] = blendNormal(a[i], b[i])
proc blitLineMaskNeon*(
proc blendLineMaskNeon*(
a, b: ptr UncheckedArray[ColorRGBX], len: int
) {.simd.} =
var i: int