From dd73217ae388a74f0c4d000ef52edd0f2b7fa64c Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 8 Mar 2015 03:19:33 -0400 Subject: GLFW: Implemented EmuWindow touchpad support. --- src/citra/emu_window/emu_window_glfw.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/citra/emu_window/emu_window_glfw.h') diff --git a/src/citra/emu_window/emu_window_glfw.h b/src/citra/emu_window/emu_window_glfw.h index 5252fccc..16c109b7 100644 --- a/src/citra/emu_window/emu_window_glfw.h +++ b/src/citra/emu_window/emu_window_glfw.h @@ -27,6 +27,10 @@ public: static void OnKeyEvent(GLFWwindow* win, int key, int scancode, int action, int mods); + static void OnMouseButtonEvent(GLFWwindow* window, int button, int action, int mods); + + static void OnCursorPosEvent(GLFWwindow* window, double x, double y); + /// Whether the window is still open, and a close request hasn't yet been sent const bool IsOpen(); -- cgit v1.2.3