X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fplugin_lib.h;h=e2f1d55f051b38efdc46bf08e10d16c3b76ad155;hp=70853540fdf1b299d9d2c3eeec94a77c136e2a0e;hb=bb88ec28db0535102b70a7c18ef095cb904e3c6c;hpb=746fee5107b5548577f57cf2aa53e2dbb6a1dffc diff --git a/frontend/plugin_lib.h b/frontend/plugin_lib.h index 70853540..e2f1d55f 100644 --- a/frontend/plugin_lib.h +++ b/frontend/plugin_lib.h @@ -23,7 +23,6 @@ extern int in_adev[2], in_adev_axis[2][2]; extern int in_enable_vibration; extern void *pl_vout_buf; -extern int pl_flip_cnt; void pl_text_out16(int x, int y, const char *texto, ...); void pl_start_watchdog(void); @@ -45,11 +44,16 @@ struct rearmed_cbs { // these are only used by some frontends void (*pl_vout_raw_flip)(int x, int y); void (*pl_vout_set_raw_vram)(void *vram); + // some stats, for display by some plugins + int flips_per_sec, cpu_usage; + float vsps_cur; // currect vsync/s // 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 struct { int allow_interlace; // 0 off, 1 on, 2 guess } gpu_neon;