Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/src/editscreen.c')
-rw-r--r--source/blender/src/editscreen.c17
1 files changed, 15 insertions, 2 deletions
diff --git a/source/blender/src/editscreen.c b/source/blender/src/editscreen.c
index 0ee13f676b6..008a2457967 100644
--- a/source/blender/src/editscreen.c
+++ b/source/blender/src/editscreen.c
@@ -2119,10 +2119,23 @@ short get_mbut(void)
winlay_process_events(0);
return window_get_mbut(mainwin);
}
-const GHOST_TabletData* get_tablet_data()
+
+/* return values of tablet data related functions are documented
+ * in the Window struct, ghostwinlay.c */
+float get_pressure(void)
+{
+ winlay_process_events(0);
+ return window_get_pressure(mainwin);
+}
+void get_tilt(float *xtilt, float *ytilt)
+{
+ winlay_process_events(0);
+ window_get_tilt(mainwin, xtilt, ytilt);
+}
+short get_activedevice(void)
{
winlay_process_events(0);
- return window_get_tablet_data(mainwin);
+ return window_get_activedevice(mainwin);
}
void add_to_mainqueue(Window *win, void *user_data, short evt, short val, char ascii)