spu: add asm mixing code for ARMv5 too
[pcsx_rearmed.git] / frontend / pl_gun_ts.h
CommitLineData
4c08b9e7 1#ifdef HAVE_TSLIB
2
3struct tsdev;
4
5struct tsdev *pl_gun_ts_init(void);
6void pl_gun_ts_update(struct tsdev *ts, int *x, int *y, int *in);
7void pl_set_gun_rect(int x, int y, int w, int h);
8
9#else
10
11#define pl_gun_ts_init() NULL
12#define pl_gun_ts_update(...) do {} while (0)
13
14#endif