add a way for GPU plugin to get layer config
[pcsx_rearmed.git] / frontend / plugin_lib.h
index 81999a3..6049f96 100644 (file)
@@ -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]))