X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=frontend%2Fplugin_lib.h;h=f55eb449b1e5a06c08174cde757b2d30e8455358;hb=9f84fc93d514007355944bd8694c92391a7ae609;hp=a83d954ad46496bf273605c51a6f9be25f1ddc37;hpb=02783d0b37a8b8c2d220f931e5bb2be2036dff87;p=pcsx_rearmed.git diff --git a/frontend/plugin_lib.h b/frontend/plugin_lib.h index a83d954a..f55eb449 100644 --- a/frontend/plugin_lib.h +++ b/frontend/plugin_lib.h @@ -51,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 @@ -75,6 +77,15 @@ struct rearmed_cbs { int no_light, no_blend; int lineskip; } gpu_unai; + struct { + int ilace_force; + int pixel_skip; + int lighting; + int fast_lighting; + int blending; + int dithering; + int scale_hires; + } gpu_senquack; struct { int dwActFixes; int bDrawDither, iFilterType, iFrameTexType;