X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fplat_dummy.c;h=26cd3a225b6ed9889645549f3a291cc373272491;hp=0b4f100b5d5d7897f0375e5ed3091b83bc04c586;hb=b07c18e8645a17be916266820ae564e0d320cc1a;hpb=4f3639fab62fa95f4bdc620b2e3500e717a0fcf3 diff --git a/frontend/plat_dummy.c b/frontend/plat_dummy.c index 0b4f100b..26cd3a22 100644 --- a/frontend/plat_dummy.c +++ b/frontend/plat_dummy.c @@ -5,18 +5,10 @@ * See the COPYING file in the top-level directory. */ -#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) +void plat_video_menu_enter(int is_rom_loaded) { - return 0; } void plat_video_menu_begin(void) @@ -27,6 +19,28 @@ void plat_video_menu_end(void) { } +void plat_video_menu_leave(void) +{ +} + +void plat_gvideo_open(void) +{ +} + +void *plat_gvideo_set_mode(int *w, int *h, int *bpp) +{ + return 0; +} + +void *plat_gvideo_flip(void) +{ + return 0; +} + +void plat_gvideo_close(void) +{ +} + void plat_init(void) { } @@ -34,3 +48,35 @@ void plat_init(void) void plat_finish(void) { } + +void *plat_prepare_screenshot(int *w, int *h, int *bpp) +{ + return 0; +} + +int plat_cpu_clock_get(void) +{ + return -1; +} + +int plat_cpu_clock_apply(int cpu_clock) +{ + return -1; +} + +int plat_get_bat_capacity(void) +{ + return -1; +} + +void plat_step_volume(int is_up) +{ +} + +void plat_trigger_vibrate(int is_strong) +{ +} + +void plat_minimize(void) +{ +}