X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fplat_dummy.c;h=9a3254986817381c9bba8070b6f50e70828ca08e;hp=78a942b774bbce3a5fe7ee016a6e6be39bb17562;hb=7badc9353b9570fd1c67827cfb477cef07974ddb;hpb=9b4bd105989e1186ca09d93e70d14484a528a238 diff --git a/frontend/plat_dummy.c b/frontend/plat_dummy.c index 78a942b7..9a325498 100644 --- a/frontend/plat_dummy.c +++ b/frontend/plat_dummy.c @@ -6,20 +6,12 @@ */ #include "common/input.h" -#include "linux/fbdev.h" #include "plat.h" -struct vout_fbdev *layer_fb; -int g_layer_x, g_layer_y, g_layer_w, g_layer_h; struct in_default_bind in_evdev_defbinds[] = { { 0, 0, 0 }, }; -int omap_enable_layer(int enabled) -{ - return 0; -} - void plat_video_menu_enter(int is_rom_loaded) { } @@ -36,15 +28,29 @@ void plat_video_menu_leave(void) { } -void plat_init(void) +void plat_gvideo_open(void) { } -void plat_finish(void) +void *plat_gvideo_set_mode(int *w, int *h, int *bpp) { + return 0; } -void in_update_analogs(void) +void *plat_gvideo_flip(void) +{ + return 0; +} + +void plat_gvideo_close(void) +{ +} + +void plat_init(void) +{ +} + +void plat_finish(void) { } @@ -71,3 +77,11 @@ int plat_get_bat_capacity(void) void plat_step_volume(int is_up) { } + +void plat_trigger_vibrate(int is_strong) +{ +} + +void plat_minimize(void) +{ +}