├── .editorconfig ├── .github └── workflows │ ├── black.yml │ ├── build.yml │ └── coverity.yml ├── .gitignore ├── AUTHORS ├── GPL ├── Makefile.am ├── README.md ├── autogen.sh ├── conf ├── 70-wacom.conf ├── Makefile.am ├── wacom-inputattach@.service.in ├── wacom-preprobe.fdi ├── wacom.fdi └── wacom.rules ├── config-ver.h.in ├── configure.ac ├── git-version-gen ├── include ├── Makefile.am ├── Xwacom.h ├── isdv4.h ├── wacom-properties.h └── wacom-util.h ├── m4 └── ax_check_compile_flag.m4 ├── man ├── Makefile.am ├── wacom.man └── xsetwacom.man ├── meson.build ├── meson_options.txt ├── release.sh ├── src ├── Makefile.am ├── WacomInterface.h ├── common.mk ├── gwacom │ ├── wacom-device.c │ ├── wacom-device.h │ ├── wacom-driver.c │ ├── wacom-driver.h │ └── wacom-private.h ├── wcmCommon.c ├── wcmConfig.c ├── wcmFilter.c ├── wcmFilter.h ├── wcmPressureCurve.c ├── wcmPressureCurve.h ├── wcmTouchFilter.c ├── wcmTouchFilter.h ├── wcmUSB.c ├── wcmValidateDevice.c ├── x11 │ ├── xf86Wacom.c │ └── xf86WacomProperties.c ├── xf86Wacom.h └── xf86WacomDefs.h ├── test ├── Makefile.am ├── __init__.py ├── conftest.py ├── devices │ └── wacom-pth660.yml ├── test_wacom.py ├── wacom-test-env.sh ├── wacom-test-suite.c ├── wacom-test-suite.h └── wacom-tests.c ├── tools ├── Makefile.am ├── isdv4-serial-debugger.c ├── isdv4-serial-inputattach.c ├── pressurecurve.c ├── tools-shared.c ├── tools-shared.h ├── wacom-record.c └── xsetwacom.c └── xorg-wacom.pc.in /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/coverity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/.github/workflows/coverity.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/AUTHORS -------------------------------------------------------------------------------- /GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/GPL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/autogen.sh -------------------------------------------------------------------------------- /conf/70-wacom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/conf/70-wacom.conf -------------------------------------------------------------------------------- /conf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/conf/Makefile.am -------------------------------------------------------------------------------- /conf/wacom-inputattach@.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/conf/wacom-inputattach@.service.in -------------------------------------------------------------------------------- /conf/wacom-preprobe.fdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/conf/wacom-preprobe.fdi -------------------------------------------------------------------------------- /conf/wacom.fdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/conf/wacom.fdi -------------------------------------------------------------------------------- /conf/wacom.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/conf/wacom.rules -------------------------------------------------------------------------------- /config-ver.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/config-ver.h.in -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/configure.ac -------------------------------------------------------------------------------- /git-version-gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/git-version-gen -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/Xwacom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/include/Xwacom.h -------------------------------------------------------------------------------- /include/isdv4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/include/isdv4.h -------------------------------------------------------------------------------- /include/wacom-properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/include/wacom-properties.h -------------------------------------------------------------------------------- /include/wacom-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/include/wacom-util.h -------------------------------------------------------------------------------- /m4/ax_check_compile_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/m4/ax_check_compile_flag.m4 -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/wacom.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/man/wacom.man -------------------------------------------------------------------------------- /man/xsetwacom.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/man/xsetwacom.man -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/meson_options.txt -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/release.sh -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/WacomInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/WacomInterface.h -------------------------------------------------------------------------------- /src/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/common.mk -------------------------------------------------------------------------------- /src/gwacom/wacom-device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/gwacom/wacom-device.c -------------------------------------------------------------------------------- /src/gwacom/wacom-device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/gwacom/wacom-device.h -------------------------------------------------------------------------------- /src/gwacom/wacom-driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/gwacom/wacom-driver.c -------------------------------------------------------------------------------- /src/gwacom/wacom-driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/gwacom/wacom-driver.h -------------------------------------------------------------------------------- /src/gwacom/wacom-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/gwacom/wacom-private.h -------------------------------------------------------------------------------- /src/wcmCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/wcmCommon.c -------------------------------------------------------------------------------- /src/wcmConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/wcmConfig.c -------------------------------------------------------------------------------- /src/wcmFilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/wcmFilter.c -------------------------------------------------------------------------------- /src/wcmFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/wcmFilter.h -------------------------------------------------------------------------------- /src/wcmPressureCurve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/wcmPressureCurve.c -------------------------------------------------------------------------------- /src/wcmPressureCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/wcmPressureCurve.h -------------------------------------------------------------------------------- /src/wcmTouchFilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/wcmTouchFilter.c -------------------------------------------------------------------------------- /src/wcmTouchFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/wcmTouchFilter.h -------------------------------------------------------------------------------- /src/wcmUSB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/wcmUSB.c -------------------------------------------------------------------------------- /src/wcmValidateDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/wcmValidateDevice.c -------------------------------------------------------------------------------- /src/x11/xf86Wacom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/x11/xf86Wacom.c -------------------------------------------------------------------------------- /src/x11/xf86WacomProperties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/x11/xf86WacomProperties.c -------------------------------------------------------------------------------- /src/xf86Wacom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/xf86Wacom.h -------------------------------------------------------------------------------- /src/xf86WacomDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/src/xf86WacomDefs.h -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/devices/wacom-pth660.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/test/devices/wacom-pth660.yml -------------------------------------------------------------------------------- /test/test_wacom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/test/test_wacom.py -------------------------------------------------------------------------------- /test/wacom-test-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/test/wacom-test-env.sh -------------------------------------------------------------------------------- /test/wacom-test-suite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/test/wacom-test-suite.c -------------------------------------------------------------------------------- /test/wacom-test-suite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/test/wacom-test-suite.h -------------------------------------------------------------------------------- /test/wacom-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/test/wacom-tests.c -------------------------------------------------------------------------------- /tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/tools/Makefile.am -------------------------------------------------------------------------------- /tools/isdv4-serial-debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/tools/isdv4-serial-debugger.c -------------------------------------------------------------------------------- /tools/isdv4-serial-inputattach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/tools/isdv4-serial-inputattach.c -------------------------------------------------------------------------------- /tools/pressurecurve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/tools/pressurecurve.c -------------------------------------------------------------------------------- /tools/tools-shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/tools/tools-shared.c -------------------------------------------------------------------------------- /tools/tools-shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/tools/tools-shared.h -------------------------------------------------------------------------------- /tools/wacom-record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/tools/wacom-record.c -------------------------------------------------------------------------------- /tools/xsetwacom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/tools/xsetwacom.c -------------------------------------------------------------------------------- /xorg-wacom.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxwacom/xf86-input-wacom/HEAD/xorg-wacom.pc.in --------------------------------------------------------------------------------