frontend: nub-as-btn option + gamepad fix
[pcsx_rearmed.git] / frontend / plat_dummy.c
... / ...
CommitLineData
1/*
2 * (C) notaz, 2010
3 *
4 * This work is licensed under the terms of the GNU GPLv2 or later.
5 * See the COPYING file in the top-level directory.
6 */
7
8#include "common/input.h"
9#include "linux/fbdev.h"
10
11struct vout_fbdev *layer_fb;
12int g_layer_x, g_layer_y, g_layer_w, g_layer_h;
13struct in_default_bind in_evdev_defbinds[] = {
14 { 0, 0, 0 },
15};
16
17int omap_enable_layer(int enabled)
18{
19 return 0;
20}
21
22void plat_video_menu_enter(int is_rom_loaded)
23{
24}
25
26void plat_video_menu_begin(void)
27{
28}
29
30void plat_video_menu_end(void)
31{
32}
33
34void plat_video_menu_leave(void)
35{
36}
37
38void plat_init(void)
39{
40}
41
42void plat_finish(void)
43{
44}
45
46void bgr555_to_rgb565(void *d, void *s, int len)
47{
48}
49
50void bgr888_to_rgb888(void *d, void *s, int len)
51{
52}
53
54void in_update_analogs(void)
55{
56}
57
58void pandora_rescan_inputs(void)
59{
60}