static unsigned short *psx_vram;
static unsigned int psx_vram_padds[512];
static int psx_offset, psx_step, psx_width, psx_height, psx_bpp;
-static int fb_offset;
+static int fb_offset_x, fb_offset_y;
// TODO: get rid of this
struct vout_fbdev;
void plat_video_menu_leave(void)
{
- pollux_changemode(psx_bpp, 1);
if (psx_vram == NULL) {
fprintf(stderr, "GPU plugin did not provide vram\n");
exit(1);
in_set_config_int(in_name_to_id("evdev:pollux-analog"),
IN_CFG_ABS_DEAD_ZONE, analog_deadzone);
+
+ memset(g_menuscreen_ptr, 0, 320*240 * psx_bpp/8);
+ g_menuscreen_ptr = fb_flip();
+ memset(g_menuscreen_ptr, 0, 320*240 * psx_bpp/8);
+
+ pollux_changemode(psx_bpp, 1);
}
static void pl_vout_set_raw_vram(void *vram)
static void *pl_vout_set_mode(int w, int h, int bpp)
{
static int old_w, old_h, old_bpp;
- int fboff_w, fboff_h;
int poff_w, poff_h;
if (!w || !h || !bpp || (w == old_w && h == old_h && bpp == old_bpp))
poff_h = h / 2 - 240/2;
h = 240;
}
- fboff_w = 320/2 - w / 2;
- fboff_h = 240/2 - h / 2;
+ fb_offset_x = 320/2 - w / 2;
+ fb_offset_y = 240/2 - h / 2;
psx_offset = poff_h * 1024 + poff_w;
psx_width = w;
psx_height = h;
psx_bpp = bpp;
- fb_offset = fboff_h * 320 + fboff_w;
+
+ if (fb_offset_x || fb_offset_y) {
+ // not fullscreen, must clear borders
+ memset(g_menuscreen_ptr, 0, 320*240 * psx_bpp/8);
+ g_menuscreen_ptr = fb_flip();
+ memset(g_menuscreen_ptr, 0, 320*240 * psx_bpp/8);
+ }
pollux_changemode(bpp, 1);
/* this takes ~1.5ms, while ldm/stm ~1.95ms */
static void raw_flip_dma(int x, int y)
{
- unsigned int dst = fb_paddrs[fb_work_buf] + fb_offset * psx_bpp / 8;
+ unsigned int dst = fb_paddrs[fb_work_buf] +
+ (fb_offset_y * 320 + fb_offset_x) * psx_bpp / 8;
int spsx_line = y + (psx_offset >> 10);
int spsx_offset = (x + psx_offset) & 0x3f8;
int dst_stride = 320 * psx_bpp / 8;
if (psx_bpp == 16) {
pl_vout_buf = g_menuscreen_ptr;
- pl_print_hud(psx_width, psx_height);
+ pl_print_hud(320, fb_offset_y + psx_height, fb_offset_x);
}
g_menuscreen_ptr = fb_flip();
static void raw_flip_soft(int x, int y)
{
unsigned short *src = psx_vram + y * 1024 + x + psx_offset;
- unsigned char *dst = (unsigned char *)g_menuscreen_ptr + fb_offset * psx_bpp / 8;
+ unsigned char *dst = (unsigned char *)g_menuscreen_ptr +
+ (fb_offset_y * 320 + fb_offset_x) * psx_bpp / 8;
int dst_stride = 320 * psx_bpp / 8;
int len = psx_width * psx_bpp / 8;
//unsigned int st = timer_get();
if (psx_bpp == 16) {
pl_vout_buf = g_menuscreen_ptr;
- pl_print_hud(psx_width, psx_height);
+ pl_print_hud(320, fb_offset_y + psx_height, fb_offset_x);
}
g_menuscreen_ptr = fb_flip();
pl_flip_cnt++;
}
+static void *pl_vout_flip(void)
+{
+ return NULL;
+}
+
void plat_init(void)
{
const char *main_fb_name = "/dev/fb0";
// hmh
plat_rescan_inputs();
+ pl_rearmed_cbs.pl_vout_flip = pl_vout_flip;
pl_rearmed_cbs.pl_vout_raw_flip = warm_ret == 0 ? raw_flip_dma : raw_flip_soft;
pl_rearmed_cbs.pl_vout_set_mode = pl_vout_set_mode;
pl_rearmed_cbs.pl_vout_set_raw_vram = pl_vout_set_raw_vram;
return ret;
}
-static void print_msg(int h)
+static void print_msg(int h, int border)
{
if (pl_vout_bpp == 16)
- pl_text_out16(2, h - 10, "%s", hud_msg);
+ pl_text_out16(border + 2, h - 10, "%s", hud_msg);
}
-static void print_fps(int h)
+static void print_fps(int h, int border)
{
if (pl_vout_bpp == 16)
- pl_text_out16(2, h - 10, "%2d %4.1f", flips_per_sec, vsps_cur);
+ pl_text_out16(border + 2, h - 10, "%2d %4.1f", flips_per_sec, vsps_cur);
}
-static void print_cpu_usage(int w, int h)
+static void print_cpu_usage(int w, int h, int border)
{
if (pl_vout_bpp == 16)
- pl_text_out16(w - 28, h - 10, "%3d", tick_per_sec);
+ pl_text_out16(w - border - 28, h - 10, "%3d", tick_per_sec);
}
// draw 192x8 status of 24 sound channels
}
}
-void pl_print_hud(int w, int h)
+void pl_print_hud(int w, int h, int xborder)
{
pl_vout_w = w; // used by pollux
pl_vout_h = h;
draw_active_chans(w, h);
if (hud_msg[0] != 0)
- print_msg(h);
+ print_msg(h, xborder);
else if (g_opts & OPT_SHOWFPS)
- print_fps(h);
+ print_fps(h, xborder);
if (g_opts & OPT_SHOWCPU)
- print_cpu_usage(w, h);
+ print_cpu_usage(w, h, xborder);
}
static void *pl_vout_set_mode(int w, int h, int bpp)
pl_flip_cnt++;
if (pl_vout_buf != NULL)
- pl_print_hud(pl_vout_w, pl_vout_h);
+ pl_print_hud(pl_vout_w, pl_vout_h, 0);
// let's flip now
#if defined(VOUT_FBDEV)