Skip to content

Commit

Permalink
Ignore unused mir event functions, need headers in Ubuntu 14.04 to us…
Browse files Browse the repository at this point in the history
…e them.
  • Loading branch information
BrandonSchaefer committed Mar 25, 2014
1 parent 2298ed1 commit 8938c2b
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/video/mir/SDL_mirevents.c
Expand Up @@ -117,21 +117,22 @@ HandleMouseButton(SDL_Window* sdl_window, Uint8 state, MirMotionButton button_st
}

static void
HandleTouchPress(int device_id, int source_id, SDL_bool down, float x, float y, float pressure)
HandleMouseMotion(SDL_Window* sdl_window, int x, int y)
{
SDL_SendTouch(device_id, source_id, down, x, y, pressure);
SDL_SendMouseMotion(sdl_window, 0, 0, x, y);
}

#if 0 /* !!! FIXME: needs a newer set of dev headers than Ubuntu 13.10 is shipping atm. */
static void
HandleTouchMotion(int device_id, int source_id, float x, float y, float pressure)
HandleTouchPress(int device_id, int source_id, SDL_bool down, float x, float y, float pressure)
{
SDL_SendTouchMotion(device_id, source_id, x, y, pressure);
SDL_SendTouch(device_id, source_id, down, x, y, pressure);
}

static void
HandleMouseMotion(SDL_Window* sdl_window, int x, int y)
HandleTouchMotion(int device_id, int source_id, float x, float y, float pressure)
{
SDL_SendMouseMotion(sdl_window, 0, 0, x, y);
SDL_SendTouchMotion(device_id, source_id, x, y, pressure);
}

static void
Expand Down Expand Up @@ -181,6 +182,7 @@ HandleTouchEvent(MirMotionEvent const motion, int cord_index, SDL_Window* sdl_wi
break;
}
}
#endif

static void
HandleMouseEvent(MirMotionEvent const motion, int cord_index, SDL_Window* sdl_window)
Expand Down

0 comments on commit 8938c2b

Please sign in to comment.