Extended GHOST to support WinTab, in order to better support graphic tablets on Windows

Basic support for normal pressure sensitivity is implemented, adding other features like tilt etc. shouldn't be too difficult, now that basic support is there.
Tested with WACOM Volito on Windows XP using the pressure sensitivity with texture paint to change size of the brush .

Added additional include dir to scons, and MSVC 7 project files - other build systems might have to be updated.
This commit is contained in:
Andrea Weikert
2006-11-05 21:55:28 +00:00
parent 8b77d4241b
commit 6feb2cc4f6
6 changed files with 158 additions and 5 deletions

View File

@@ -27,4 +27,6 @@ else:
Exit()
incs = '. ../string ' + env['BF_OPENGL_INC']
if window_system in ('win32-vc', 'win32-mingw', 'cygwin', 'linuxcross'):
incs = '../../../../lib/windows/wintab/INCLUDE ' + incs
env.BlenderLib ('bf_ghost', sources, Split(incs), [], libtype=['core','player'], priority = [25,15] )