Mercurial > sdl-ios-xcode
changeset 3572:6bb9952d5029
Fixed bug #642
Gerry JJ 2008-11-09 02:11:49 PST
The SDL_MouseMotionEvent struct has a field named "tilt" (currently marked "for
future use"), for tablet stylus tilt information. However, one value is not
enough for this, as tilt is two-dimensional. Reserving only one field for
future use is no good when you're going to need two, so there should be two
fields, tilt_x and tilt_y.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 16 Dec 2009 00:44:53 +0000 |
parents | 19691cebb866 |
children | 41cd18e05965 |
files | include/SDL_events.h src/events/SDL_mouse.c |
diffstat | 2 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/include/SDL_events.h Tue Dec 15 20:53:09 2009 +0000 +++ b/include/SDL_events.h Wed Dec 16 00:44:53 2009 +0000 @@ -186,7 +186,8 @@ int pressure_max; /**< Maximum value of the pressure reported by the device */ int pressure_min; /**< Minimum value of the pressure reported by the device */ int rotation; /**< For future use */ - int tilt; /**< For future use */ + int tilt_x; /**< For future use */ + int tilt_y; /**< For future use */ int cursor; /**< The cursor being used in the event */ int xrel; /**< The relative motion in the X direction */ int yrel; /**< The relative motion in the Y direction */
--- a/src/events/SDL_mouse.c Tue Dec 15 20:53:09 2009 +0000 +++ b/src/events/SDL_mouse.c Wed Dec 16 00:44:53 2009 +0000 @@ -473,7 +473,8 @@ event.motion.pressure_max = mouse->pressure_max; event.motion.pressure_min = mouse->pressure_min; event.motion.rotation = 0; - event.motion.tilt = 0; + event.motion.tilt_x = 0; + event.motion.tilt_y = 0; event.motion.cursor = mouse->current_end; event.motion.xrel = xrel; event.motion.yrel = yrel;