aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authornotaz2011-01-03 00:14:35 +0200
committernotaz2011-01-03 00:14:35 +0200
commit78d78c3b21fbdc32b73b9e4c9e2719a148c32356 (patch)
treec3ed88439e02ec6bd1876826b154995071e1bd8d /frontend
parente7267688b48c7e6619cab3dafe61212b166b389b (diff)
downloadpcsx_rearmed-78d78c3b21fbdc32b73b9e4c9e2719a148c32356.tar.gz
pcsx_rearmed-78d78c3b21fbdc32b73b9e4c9e2719a148c32356.tar.bz2
pcsx_rearmed-78d78c3b21fbdc32b73b9e4c9e2719a148c32356.zip
gpu_unai: basic frameskip
only partially works but oh well
Diffstat (limited to 'frontend')
-rw-r--r--frontend/plugin_lib.c3
-rw-r--r--frontend/plugin_lib.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/frontend/plugin_lib.c b/frontend/plugin_lib.c
index d69a0b4..4e65e2e 100644
--- a/frontend/plugin_lib.c
+++ b/frontend/plugin_lib.c
@@ -198,11 +198,14 @@ static void pl_get_layer_pos(int *x, int *y, int *w, int *h)
*h = g_layer_h;
}
+extern int UseFrameSkip; // hmh
+
const struct rearmed_cbs pl_rearmed_cbs = {
pl_get_layer_pos,
pl_fbdev_open,
pl_fbdev_set_mode,
pl_fbdev_flip,
pl_fbdev_close,
+ &UseFrameSkip,
};
diff --git a/frontend/plugin_lib.h b/frontend/plugin_lib.h
index 7a25b81..f5c4985 100644
--- a/frontend/plugin_lib.h
+++ b/frontend/plugin_lib.h
@@ -34,6 +34,7 @@ struct rearmed_cbs {
int (*pl_fbdev_set_mode)(int w, int h, int bpp);
void *(*pl_fbdev_flip)(void);
void (*pl_fbdev_close)(void);
+ int *fskip_option;
};
extern const struct rearmed_cbs pl_rearmed_cbs;