5a59452dadd857edc53ca9fdb39c9a8eaf10d31e
[libpicofe.git] / gp2x / plat_gp2x.h
1 #ifndef __GP2X_H__
2 #define __GP2X_H__
3
4 extern int default_cpu_clock;
5
6 /* video */
7 void gp2x_video_changemode(int bpp);
8 void gp2x_memcpy_all_buffers(void *data, int offset, int len);
9 void gp2x_memset_all_buffers(int offset, int byte, int len);
10 void gp2x_make_fb_bufferable(int yes);
11
12 /* input */
13 int gp2x_touchpad_read(int *x, int *y);
14
15 #endif