add links to blend formula sources
This commit is contained in:
parent
bed384db6a
commit
fce9f12147
1 changed files with 4 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
import chroma, blends, vmath, common
|
import chroma, blends, vmath, common, system/memory
|
||||||
|
|
||||||
type
|
type
|
||||||
Image* = ref object
|
Image* = ref object
|
||||||
|
@ -70,11 +70,9 @@ proc `[]=`*(image: Image, x, y: int, rgba: ColorRGBA) {.inline.} =
|
||||||
|
|
||||||
proc fill*(image: Image, rgba: ColorRgba) =
|
proc fill*(image: Image, rgba: ColorRgba) =
|
||||||
## Fills the image with a solid color.
|
## Fills the image with a solid color.
|
||||||
if rgba == rgba(0, 0, 0, 0):
|
nimSetMem(image.data[0].addr, cast[int32](rgba), image.data.len)
|
||||||
zeroMem(image.data[0].addr, image.data.len * 4)
|
# for c in image.data.mitems:
|
||||||
else:
|
# c = rgba
|
||||||
for c in image.data.mitems:
|
|
||||||
c = rgba
|
|
||||||
|
|
||||||
proc invert*(image: Image) =
|
proc invert*(image: Image) =
|
||||||
## Inverts all of the colors and alpha.
|
## Inverts all of the colors and alpha.
|
||||||
|
|
Loading…
Reference in a new issue