aboutsummaryrefslogtreecommitdiff
path: root/frontend/plugin_lib.h
diff options
context:
space:
mode:
authornotaz2011-01-02 00:34:26 +0200
committernotaz2011-01-02 00:34:26 +0200
commit201c21e2ad6be25a4b843d1434eabb432ce72884 (patch)
treec72e885c1fa6f0525d353496fb3a6c247ec61582 /frontend/plugin_lib.h
parentf932e54bc49d2b211a9100f8b6f5385e0eafe64c (diff)
downloadpcsx_rearmed-201c21e2ad6be25a4b843d1434eabb432ce72884.tar.gz
pcsx_rearmed-201c21e2ad6be25a4b843d1434eabb432ce72884.tar.bz2
pcsx_rearmed-201c21e2ad6be25a4b843d1434eabb432ce72884.zip
add a way for GPU plugin to get layer config
Diffstat (limited to 'frontend/plugin_lib.h')
-rw-r--r--frontend/plugin_lib.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/frontend/plugin_lib.h b/frontend/plugin_lib.h
index 81999a3..6049f96 100644
--- a/frontend/plugin_lib.h
+++ b/frontend/plugin_lib.h
@@ -26,7 +26,13 @@ int pl_fbdev_set_mode(int w, int h, int bpp);
void pl_fbdev_flip(void);
void pl_fbdev_close(void);
-void pl_text_out16(int x, int y, const char *texto, ...);
+void pl_text_out16(int x, int y, const char *texto, ...);
+
+struct rearmed_cbs {
+ void (*pl_get_layer_pos)(int *x, int *y, int *w, int *h);
+};
+
+extern const struct rearmed_cbs pl_rearmed_cbs;
#ifndef ARRAY_SIZE
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))