faster horiz and vert gradients
This commit is contained in:
parent
ebac3e1f24
commit
edaaeff2e3
4 changed files with 98 additions and 9 deletions
|
@ -1,5 +1,8 @@
|
||||||
import blends, chroma, common, images, vmath
|
import blends, chroma, common, images, vmath
|
||||||
|
|
||||||
|
when defined(amd64) and not defined(pixieNoSimd):
|
||||||
|
import nimsimd/sse2
|
||||||
|
|
||||||
type
|
type
|
||||||
PaintKind* = enum
|
PaintKind* = enum
|
||||||
pkSolid
|
pkSolid
|
||||||
|
@ -65,8 +68,8 @@ converter parseSomePaint*(paint: SomePaint): Paint {.inline.} =
|
||||||
proc colorStop*(color: Color, position: float32): ColorStop =
|
proc colorStop*(color: Color, position: float32): ColorStop =
|
||||||
ColorStop(color: color, position: position)
|
ColorStop(color: color, position: position)
|
||||||
|
|
||||||
proc gradientPut(image: Image, paint: Paint, x, y: int, t: float32) =
|
proc gradientColor(paint: Paint, t: float32): ColorRGBX =
|
||||||
## Put an gradient color based on `t` - where are we related to a line.
|
## Get the gradient color based on `t` - where are we related to a line.
|
||||||
var index = -1
|
var index = -1
|
||||||
for i, stop in paint.gradientStops:
|
for i, stop in paint.gradientStops:
|
||||||
if stop.position < t:
|
if stop.position < t:
|
||||||
|
@ -90,7 +93,7 @@ proc gradientPut(image: Image, paint: Paint, x, y: int, t: float32) =
|
||||||
(t - gs1.position) / (gs2.position - gs1.position)
|
(t - gs1.position) / (gs2.position - gs1.position)
|
||||||
)
|
)
|
||||||
color.a *= paint.opacity
|
color.a *= paint.opacity
|
||||||
image.setRgbaUnsafe(x, y, color.rgbx())
|
color.rgbx()
|
||||||
|
|
||||||
proc fillGradientLinear(image: Image, paint: Paint) =
|
proc fillGradientLinear(image: Image, paint: Paint) =
|
||||||
## Fills a linear gradient.
|
## Fills a linear gradient.
|
||||||
|
@ -114,12 +117,56 @@ proc fillGradientLinear(image: Image, paint: Paint) =
|
||||||
let
|
let
|
||||||
at = paint.gradientHandlePositions[0]
|
at = paint.gradientHandlePositions[0]
|
||||||
to = paint.gradientHandlePositions[1]
|
to = paint.gradientHandlePositions[1]
|
||||||
|
|
||||||
|
if at.y == to.y: # Horizontal gradient
|
||||||
|
var x: int
|
||||||
|
while x < image.width:
|
||||||
|
when defined(amd64) and not defined(pixieNoSimd):
|
||||||
|
if x + 4 <= image.width:
|
||||||
|
var colors: array[4, ColorRGBX]
|
||||||
|
for i in 0 ..< 4:
|
||||||
|
let
|
||||||
|
xy = vec2((x + i).float32, 0.float32)
|
||||||
|
t = toLineSpace(at, to, xy)
|
||||||
|
rgbx = paint.gradientColor(t)
|
||||||
|
colors[i] = rgbx
|
||||||
|
|
||||||
|
let colorVec = cast[M128i](colors)
|
||||||
|
for y in 0 ..< image.height:
|
||||||
|
mm_storeu_si128(image.data[image.dataIndex(x, y)].addr, colorVec)
|
||||||
|
x += 4
|
||||||
|
continue
|
||||||
|
|
||||||
|
let
|
||||||
|
xy = vec2(x.float32, 0.float32)
|
||||||
|
t = toLineSpace(at, to, xy)
|
||||||
|
rgbx = paint.gradientColor(t)
|
||||||
|
for y in 0 ..< image.height:
|
||||||
|
image.setRgbaUnsafe(x, y, rgbx)
|
||||||
|
inc x
|
||||||
|
|
||||||
|
elif at.x == to.x: # Vertical gradient
|
||||||
|
for y in 0 ..< image.height:
|
||||||
|
let
|
||||||
|
xy = vec2(0.float32, y.float32)
|
||||||
|
t = toLineSpace(at, to, xy)
|
||||||
|
rgbx = paint.gradientColor(t)
|
||||||
|
var x: int
|
||||||
|
when defined(amd64) and not defined(pixieNoSimd):
|
||||||
|
let colorVec = mm_set1_epi32(cast[int32](rgbx))
|
||||||
|
for _ in 0 ..< image.width div 4:
|
||||||
|
mm_storeu_si128(image.data[image.dataIndex(x, y)].addr, colorVec)
|
||||||
|
x += 4
|
||||||
|
for x in x ..< image.width:
|
||||||
|
image.setRgbaUnsafe(x, y, rgbx)
|
||||||
|
|
||||||
|
else:
|
||||||
for y in 0 ..< image.height:
|
for y in 0 ..< image.height:
|
||||||
for x in 0 ..< image.width:
|
for x in 0 ..< image.width:
|
||||||
let
|
let
|
||||||
xy = vec2(x.float32, y.float32)
|
xy = vec2(x.float32, y.float32)
|
||||||
t = toLineSpace(at, to, xy)
|
t = toLineSpace(at, to, xy)
|
||||||
image.gradientPut(paint, x, y, t)
|
image.setRgbaUnsafe(x, y, paint.gradientColor(t))
|
||||||
|
|
||||||
proc fillGradientRadial(image: Image, paint: Paint) =
|
proc fillGradientRadial(image: Image, paint: Paint) =
|
||||||
## Fills a radial gradient.
|
## Fills a radial gradient.
|
||||||
|
@ -150,7 +197,7 @@ proc fillGradientRadial(image: Image, paint: Paint) =
|
||||||
let
|
let
|
||||||
xy = vec2(x.float32, y.float32)
|
xy = vec2(x.float32, y.float32)
|
||||||
t = (mat * xy).length()
|
t = (mat * xy).length()
|
||||||
image.gradientPut(paint, x, y, t)
|
image.setRgbaUnsafe(x, y, paint.gradientColor(t))
|
||||||
|
|
||||||
proc fillGradientAngular(image: Image, paint: Paint) =
|
proc fillGradientAngular(image: Image, paint: Paint) =
|
||||||
## Fills an angular gradient.
|
## Fills an angular gradient.
|
||||||
|
@ -175,7 +222,7 @@ proc fillGradientAngular(image: Image, paint: Paint) =
|
||||||
xy = vec2(x.float32, y.float32)
|
xy = vec2(x.float32, y.float32)
|
||||||
angle = normalize(xy - center).angle()
|
angle = normalize(xy - center).angle()
|
||||||
t = (angle + gradientAngle + PI / 2).fixAngle() / 2 / PI + 0.5
|
t = (angle + gradientAngle + PI / 2).fixAngle() / 2 / PI + 0.5
|
||||||
image.gradientPut(paint, x, y, t)
|
image.setRgbaUnsafe(x, y, paint.gradientColor(t))
|
||||||
|
|
||||||
proc fillGradient*(image: Image, paint: Paint) {.raises: [PixieError].} =
|
proc fillGradient*(image: Image, paint: Paint) {.raises: [PixieError].} =
|
||||||
## Fills with the Paint gradient.
|
## Fills with the Paint gradient.
|
||||||
|
|
27
tests/benchmark_paints.nim
Normal file
27
tests/benchmark_paints.nim
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
import benchy, pixie
|
||||||
|
|
||||||
|
let image = newImage(1000, 1000)
|
||||||
|
|
||||||
|
timeIt "GradientLinear vertical":
|
||||||
|
let paint = newPaint(pkGradientLinear)
|
||||||
|
paint.gradientHandlePositions = @[
|
||||||
|
vec2(50, 0),
|
||||||
|
vec2(50, 1000),
|
||||||
|
]
|
||||||
|
paint.gradientStops = @[
|
||||||
|
ColorStop(color: color(1, 0, 0, 1), position: 0),
|
||||||
|
ColorStop(color: color(1, 0, 0, 0.15625), position: 1.0),
|
||||||
|
]
|
||||||
|
image.fillGradient(paint)
|
||||||
|
|
||||||
|
timeIt "GradientLinear horizontal":
|
||||||
|
let paint = newPaint(pkGradientLinear)
|
||||||
|
paint.gradientHandlePositions = @[
|
||||||
|
vec2(0, 50),
|
||||||
|
vec2(1000, 50),
|
||||||
|
]
|
||||||
|
paint.gradientStops = @[
|
||||||
|
ColorStop(color: color(1, 0, 0, 1), position: 0),
|
||||||
|
ColorStop(color: color(1, 0, 0, 0.15625), position: 1.0),
|
||||||
|
]
|
||||||
|
image.fillGradient(paint)
|
BIN
tests/paths/gradientLinear2.png
Normal file
BIN
tests/paths/gradientLinear2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
|
@ -69,6 +69,21 @@ block:
|
||||||
image.fillPath(heartShape, paint)
|
image.fillPath(heartShape, paint)
|
||||||
image.writeFile("tests/paths/gradientLinear.png")
|
image.writeFile("tests/paths/gradientLinear.png")
|
||||||
|
|
||||||
|
block:
|
||||||
|
let paint = newPaint(pkGradientLinear)
|
||||||
|
paint.gradientHandlePositions = @[
|
||||||
|
vec2(50, 0),
|
||||||
|
vec2(50, 100),
|
||||||
|
]
|
||||||
|
paint.gradientStops = @[
|
||||||
|
ColorStop(color: color(1, 0, 0, 1), position: 0),
|
||||||
|
ColorStop(color: color(1, 0, 0, 0.15625), position: 1.0),
|
||||||
|
]
|
||||||
|
|
||||||
|
let image = newImage(100, 100)
|
||||||
|
image.fillPath(heartShape, paint)
|
||||||
|
image.writeFile("tests/paths/gradientLinear2.png")
|
||||||
|
|
||||||
block:
|
block:
|
||||||
let paint = newPaint(pkGradientRadial)
|
let paint = newPaint(pkGradientRadial)
|
||||||
paint.gradientHandlePositions = @[
|
paint.gradientHandlePositions = @[
|
||||||
|
|
Loading…
Reference in a new issue