X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fplugin_lib.h;h=4a110020aa84c3f3e3cac081da5e51ed2e9f55c0;hp=a96dc4e7a34e007d0b4cec116fd4d4795622b0a5;hb=215ff9e69c0b845f24e7a3aa9faeef06d9276145;hpb=2c5d0a55b2b48b33f6d15b59d6f04a06c90b2ab5 diff --git a/frontend/plugin_lib.h b/frontend/plugin_lib.h index a96dc4e7..4a110020 100644 --- a/frontend/plugin_lib.h +++ b/frontend/plugin_lib.h @@ -28,22 +28,18 @@ extern void *pl_vout_buf; extern int g_layer_x, g_layer_y; extern int g_layer_w, g_layer_h; -void pl_text_out16(int x, int y, const char *texto, ...); 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); void pl_frame_limit(void); -void pl_update_gun(int *xn, int *xres, int *y, int *in); - struct rearmed_cbs { void (*pl_get_layer_pos)(int *x, int *y, int *w, int *h); int (*pl_vout_open)(void); - void (*pl_vout_set_mode)(int w, int h, int bpp); + void (*pl_vout_set_mode)(int w, int h, int raw_w, int raw_h, int bpp); void (*pl_vout_flip)(const void *vram, int stride, int bgr24, int w, int h); void (*pl_vout_close)(void); @@ -55,13 +51,15 @@ struct rearmed_cbs { // some stats, for display by some plugins int flips_per_sec, cpu_usage; float vsps_cur; // currect vsync/s + // these are for gles plugin + unsigned int screen_w, screen_h; + void *gles_display, *gles_surface; // gpu options int frameskip; int fskip_advice; unsigned int *gpu_frame_count; unsigned int *gpu_hcnt; unsigned int flip_cnt; // increment manually if not using pl_vout_flip - unsigned int screen_w, screen_h; // gles plugin wants this unsigned int only_16bpp; // platform is 16bpp-only struct { int allow_interlace; // 0 off, 1 on, 2 guess @@ -96,6 +94,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