mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-26 15:30:40 +02:00
x86: Fix the test for negative pixel count in optimized rgb565 spans.
There's a bunch of bogus looking stuff the count handling in this code, but this fixes the testcases we have.
This commit is contained in:
parent
21a3a79371
commit
d63c29ef20
1 changed files with 1 additions and 1 deletions
|
|
@ -522,7 +522,7 @@ _generic_read_RGBA_span_RGB565_MMX:
|
|||
addl $32,%esp
|
||||
|
||||
sarl $2, %ecx
|
||||
jle .L01 /* Bail early if the count is negative. */
|
||||
jl .L01 /* Bail early if the count is negative. */
|
||||
jmp .L02
|
||||
|
||||
.L03:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue