uxn

Varvara Ordinator, written in ANSI C(SDL2)
git clone https://git.eamoncaddigan.net/uxn.git
Log | Files | Refs | README | LICENSE

commit e488f767665bf4f1ad5231b1b092ec55f0aebbf1
parent 68c3a8130195469e88aefaee6b91ec06c9218d85
Author: Sigrid Solveig Haflínudóttir <ftrvxmtrx@gmail.com>
Date:   Sun, 26 Dec 2021 14:19:02 +0100

ppu arch64: clear "changed" on fg/bg and handle leftovers, if any

Diffstat:
Msrc/devices/ppu_aarch64.c | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/devices/ppu_aarch64.c b/src/devices/ppu_aarch64.c @@ -9,7 +9,9 @@ ppu_redraw(Ppu *p, Uint32 *screen) Uint8 *bg = p->bg.pixels; int i; - for(i = 0; i < p->width * p->height; i += 16, fg += 16, bg += 16, screen += 16) { + p->fg.changed = p->bg.changed = 0; + + for(i = 0; i < (p->width * p->height & ~15); i += 16, fg += 16, bg += 16, screen += 16) { uint8x16_t fg8 = vld1q_u8(fg); uint8x16_t bg8 = vld1q_u8(bg); uint8x16_t px8 = vbslq_u8(vceqzq_u8(fg8), bg8, fg8); @@ -21,4 +23,7 @@ ppu_redraw(Ppu *p, Uint32 *screen) }; vst4q_u8((uint8_t*)screen, px); } + + for(; i < p->width * p->height; i++) + screen[i] = p->palette[*fg ? *fg : *bg]; }