X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fplugin_lib.h;h=a83d954ad46496bf273605c51a6f9be25f1ddc37;hp=2f6c680ed01d9d4ea37093ccb9ead6546fd4d769;hb=89f33b734d7d540c7fa26f6556ef9ec49eb3008a;hpb=e4c83ca67cf7ad13db3995909605ce01ff915824 diff --git a/frontend/plugin_lib.h b/frontend/plugin_lib.h index 2f6c680e..a83d954a 100644 --- a/frontend/plugin_lib.h +++ b/frontend/plugin_lib.h @@ -31,7 +31,6 @@ extern int g_layer_w, g_layer_h; void pl_start_watchdog(void); void *pl_prepare_screenshot(int *w, int *h, int *bpp); void pl_init(void); -void pl_print_hud(int width, int height, int xborder); void pl_switch_dispmode(void); void pl_timing_prepare(int is_pal); @@ -93,6 +92,12 @@ enum gpu_plugin_caps { GPU_CAP_SUPPORTS_2X = (1 << 1), }; +// platform hooks +extern void (*pl_plat_clear)(void); +extern void (*pl_plat_blit)(int doffs, const void *src, + int w, int h, int sstride, int bgr24); +extern void (*pl_plat_hud_print)(int x, int y, const char *str, int bpp); + #ifndef ARRAY_SIZE #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0])) #endif