add touchscreen support
[sdl_omap.git] / src / video / omapdss / omapsdl.h
index f0f1ac4..250099f 100644 (file)
@@ -3,7 +3,7 @@
 
 #define err(fmt, ...) fprintf(stderr, "omapsdl: " fmt "\n", ##__VA_ARGS__)
 #define not_supported() fprintf(stderr, "omapsdl: %s not supported\n", __FUNCTION__)
-#if 1
+#if 0
 #define trace(fmt, ...) printf(" %s(" fmt ")\n", __FUNCTION__, ##__VA_ARGS__)
 #define dbg err
 #else
 
 void omapsdl_input_init(void);
 void omapsdl_input_bind(const char *kname, const char *sdlname);
-int  omapsdl_input_get_event(void *event_, int timeout);
+int  omapsdl_input_get_events(int timeout_ms,
+               int (*key_cb)(void *cb_arg, int sdl_kc, int is_pressed),
+               int (*ts_cb)(void *cb_arg, int x, int y, unsigned int pressure),
+               void *cb_arg);
+void omapsdl_input_finish(void);
 
 void omapsdl_config(void);
 
 /* functions for standalone */
 void do_clut(void *dest, void *src, unsigned short *pal, int count);
+
+/* config */
+extern int gcfg_force_vsync;