{ \
unsigned short t; \
int i; \
- for (i = 320/2; i > 0; i--, p32x++) { \
- t = pal[*p32x >> 8]; \
- if (*pmd == mdbg || (t & 0x20)) \
- *pd = t; \
- else \
- pmd_draw_code; \
- pd++; pmd++; \
- t = pal[*p32x & 0xff]; \
+ for (i = 320; i > 0; i--, pd++, p32x++, pmd++) { \
+ t = pal[*(unsigned char *)((long)p32x ^ 1)]; \
if (*pmd == mdbg || (t & 0x20)) \
*pd = t; \
else \
pmd_draw_code; \
- pd++; pmd++; \
} \
}
convert_pal555(Pico32x.vdp_regs[0] & P32XV_PRI);
if ((Pico32x.vdp_regs[0] & P32XV_Mx) == 1) { // Packed Pixel Mode
- do_line_pp(pd, p32x, pmd,);
+ unsigned char *p32xb = (void *)p32x;
+ if (Pico32x.vdp_regs[2 / 2] & P32XV_SFT)
+ p32xb++;
+ do_line_pp(pd, p32xb, pmd,);
}
else { // Run Length Mode
do_line_rl(pd, p32x, pmd,);
*dst = palmd[*pmd]
#define PICOSCAN_PRE \
- PicoScan32xBegin(l + (lines_offs & 0xff)); \
+ PicoScan32xBegin(l + (lines_sft_offs & 0xff)); \
dst = DrawLineDest; \
#define PICOSCAN_POST \
- PicoScan32xEnd(l + (lines_offs & 0xff)); \
+ PicoScan32xEnd(l + (lines_sft_offs & 0xff)); \
#define make_do_loop(name, pre_code, post_code, md_code) \
/* Direct Color Mode */ \
static void do_loop_dc##name(unsigned short *dst, \
- unsigned short *dram, int lines_offs, int mdbg) \
+ unsigned short *dram, int lines_sft_offs, int mdbg) \
{ \
int inv_bit = (Pico32x.vdp_regs[0] & P32XV_PRI) ? 0x8000 : 0; \
unsigned char *pmd = PicoDraw2FB + 328 * 8 + 8; \
unsigned short *palmd = HighPal; \
unsigned short *p32x; \
- int lines = lines_offs >> 16; \
+ int lines = lines_sft_offs >> 16; \
int l; \
(void)palmd; \
for (l = 0; l < lines; l++, pmd += 8) { \
\
/* Packed Pixel Mode */ \
static void do_loop_pp##name(unsigned short *dst, \
- unsigned short *dram, int lines_offs, int mdbg) \
+ unsigned short *dram, int lines_sft_offs, int mdbg) \
{ \
unsigned short *pal = Pico32xMem->pal_native; \
unsigned char *pmd = PicoDraw2FB + 328 * 8 + 8; \
unsigned short *palmd = HighPal; \
- unsigned short *p32x; \
- int lines = lines_offs >> 16; \
+ unsigned char *p32x; \
+ int lines = lines_sft_offs >> 16; \
int l; \
(void)palmd; \
for (l = 0; l < lines; l++, pmd += 8) { \
pre_code; \
- p32x = dram + dram[l]; \
+ p32x = (void *)(dram + dram[l]); \
+ p32x += (lines_sft_offs >> 8) & 1; \
do_line_pp(dst, p32x, pmd, md_code); \
post_code; \
} \
\
/* Run Length Mode */ \
static void do_loop_rl##name(unsigned short *dst, \
- unsigned short *dram, int lines_offs, int mdbg) \
+ unsigned short *dram, int lines_sft_offs, int mdbg) \
{ \
unsigned short *pal = Pico32xMem->pal_native; \
unsigned char *pmd = PicoDraw2FB + 328 * 8 + 8; \
unsigned short *palmd = HighPal; \
unsigned short *p32x; \
- int lines = lines_offs >> 16; \
+ int lines = lines_sft_offs >> 16; \
int l; \
(void)palmd; \
for (l = 0; l < lines; l++, pmd += 8) { \
int have_scan = PicoScan32xBegin != NULL && PicoScan32xEnd != NULL;
const do_loop_func *do_loop;
unsigned short *dram;
+ int lines_sft_offs;
int which_func;
DrawLineDest = DrawLineDestBase + offs * DrawLineDestIncrement;
which_func = have_scan ? DO_LOOP_MD_SCAN : DO_LOOP_MD;
else
which_func = have_scan ? DO_LOOP_SCAN : DO_LOOP;
+ lines_sft_offs = (lines << 16) | offs;
+ if (Pico32x.vdp_regs[2 / 2] & P32XV_SFT)
+ lines_sft_offs |= 1 << 8;
- do_loop[which_func](DrawLineDest, dram, (lines << 16) | offs, md_bg);
+ do_loop[which_func](DrawLineDest, dram, lines_sft_offs, md_bg);
}
void PicoDraw32xSetFrameMode(int is_on, int only_32x)
.endm
@ direct color
-@ unsigned short *dst, unsigned short *dram, int lines_offs, int mdbg
+@ unsigned short *dst, unsigned short *dram, int lines_sft_offs, int mdbg
.macro make_do_loop_dc name call_scan do_md
.global \name
\name:
.endif
.endm
-@ unsigned short *dst, unsigned short *dram, int lines_offs, int mdbg
+@ unsigned short *dst, unsigned short *dram, int lines_sft_offs, int mdbg
.macro make_do_loop_pp name call_scan do_md
.global \name
\name:
add r11,r11,#8
mov r6, #320
add r5, r1, r12, lsl #1 @ p32x = dram + dram[l]
+ and r12,r2, #0x100 @ shift
+ add r5, r5, r12,lsr #8
2: @ loop_inner:
do_pixel_pp \do_md
@ run length
-@ unsigned short *dst, unsigned short *dram, int lines_offs, int mdbg
+@ unsigned short *dst, unsigned short *dram, int lines_sft_offs, int mdbg
.macro make_do_loop_rl name call_scan do_md
.global \name
\name:
PicoDraw32xSetFrameMode(1, only_32x);\r
PicoDrawSetOutBuf(g_screen_ptr, g_screen_width * 2);\r
}\r
+ //PicoDraw32xSetFrameMode(0, 0);\r
+ //PicoDrawSetOutFormat(PDF_RGB555, 1);\r
}\r
\r
void plat_video_toggle_renderer(int change, int is_menu)\r
PicoOpt &= ~POPT_ALT_RENDERER;\r
PicoOpt |= opts|POPT_ACC_SPRITES; // acc_sprites\r
\r
- PicoDrawSetOutFormat(PDF_RGB555, 0);\r
+ PicoDrawSetOutFormat(PDF_RGB555, 1);\r
+ PicoDrawSetOutBuf(g_screen_ptr, g_screen_width * 2);\r
+ PicoDraw32xSetFrameMode(0, 0);\r
\r
Pico.m.dirtyPal = 1;\r
PicoFrameDrawOnly();\r
PicoOpt &= ~POPT_ALT_RENDERER;\r
PicoOpt |= POPT_EN_SOFTSCALE|POPT_ACC_SPRITES;\r
\r
- PicoDrawSetOutFormat(PDF_RGB555, 0);\r
+ PicoDrawSetOutFormat(PDF_RGB555, 1);\r
+ PicoDrawSetOutBuf(g_screen_ptr, g_screen_width * 2);\r
+ PicoDraw32xSetFrameMode(0, 0);\r
Pico.m.dirtyPal = 1;\r
PicoFrame();\r
\r