summaryrefslogtreecommitdiff
path: root/src/common/emu_window.h
diff options
context:
space:
mode:
authorGravatar Tony Wasserka2015-05-02 19:15:03 +0200
committerGravatar Tony Wasserka2015-05-02 19:15:03 +0200
commit7859b145cf11aaed39fc430ab1cf277a0cc39e77 (patch)
tree66b4622566d00fe5788dc8ce7dbfc899d9c056d6 /src/common/emu_window.h
parentMerge pull request #713 from bunnei/qt-emuthread-fixes (diff)
parentEmuWindow: Clip mouse input coordinates to emulated screen dimensions. (diff)
downloadyuzu-7859b145cf11aaed39fc430ab1cf277a0cc39e77.tar.gz
yuzu-7859b145cf11aaed39fc430ab1cf277a0cc39e77.tar.xz
yuzu-7859b145cf11aaed39fc430ab1cf277a0cc39e77.zip
Merge pull request #698 from Zaneo/clip_stylus_input
EmuWindow: Clip mouse input coordinates to emulated screen dimensions.
Diffstat (limited to 'src/common/emu_window.h')
-rw-r--r--src/common/emu_window.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/emu_window.h b/src/common/emu_window.h
index c8e2de04a..e0fc12a48 100644
--- a/src/common/emu_window.h
+++ b/src/common/emu_window.h
@@ -206,5 +206,10 @@ private:
206 u16 touch_x; ///< Touchpad X-position in native 3DS pixel coordinates (0-320) 206 u16 touch_x; ///< Touchpad X-position in native 3DS pixel coordinates (0-320)
207 u16 touch_y; ///< Touchpad Y-position in native 3DS pixel coordinates (0-240) 207 u16 touch_y; ///< Touchpad Y-position in native 3DS pixel coordinates (0-240)
208 208
209 /**
210 * Clip the provided coordinates to be inside the touchscreen area.
211 */
212 std::tuple<unsigned,unsigned> ClipToTouchScreen(unsigned new_x, unsigned new_y);
213
209 Service::HID::PadState pad_state; 214 Service::HID::PadState pad_state;
210}; 215};