fix
This commit is contained in:
parent
50a4687d67
commit
abbcc717cd
1 changed files with 16 additions and 15 deletions
|
@ -668,7 +668,8 @@ proc drawUber(
|
|||
else:
|
||||
var x = xMin
|
||||
when defined(amd64) and not defined(pixieNoSimd):
|
||||
if dx.y == 0 and dy.x == 0 and blendMode.hasSimdBlender():
|
||||
if blendMode.hasSimdBlender():
|
||||
if dx.x == 1 and dx.y == 0 and dy.x == 0 and dy.y == 1:
|
||||
# Check we are not rotated before using SIMD blends
|
||||
let blenderSimd = blendMode.blenderSimd()
|
||||
for _ in countup(x, xMax - 4, 4):
|
||||
|
|
Loading…
Reference in a new issue