Home
last modified time | relevance | path

Searched refs:libwacom (Results 1 – 8 of 8) sorted by relevance

/third_party/libinput/
Dmeson_options.txt9 option('libwacom', boolean
12 description: 'Use libwacom for tablet identification (default=true)')
Dmeson.build156 ############ libwacom configuration ############
158 have_libwacom = get_option('libwacom')
161 dep_libwacom = dependency('libwacom', version : '>= 0.27')
/third_party/libinput/doc/user/
Dbuilding.rst260 libwacom is required by libinput's tablet code to gather additional
262 It is not recommended to disable libwacom unless libinput is used in an
264 support even without libwacom, but some features may be missing or working
Dtablet-support.rst294 sources like libwacom to associate button numbers to their position on the
300 external sources like libwacom to identify which buttons have semantic
339 libwacom to determine if a tablet is capable of being switched to
Dcontributing.rst409 For example, if an error is found in the ``build-no-libwacom`` step, open the
/third_party/libinput/src/
Dlibinput.c4565 if (!li->libwacom.db) { in libinput_libwacom_ref()
4573 li->libwacom.db = db; in libinput_libwacom_ref()
4574 li->libwacom.refcount = 0; in libinput_libwacom_ref()
4577 li->libwacom.refcount++; in libinput_libwacom_ref()
4578 db = li->libwacom.db; in libinput_libwacom_ref()
4585 if (!li->libwacom.db) in libinput_libwacom_unref()
4588 assert(li->libwacom.refcount >= 1); in libinput_libwacom_unref()
4590 if (--li->libwacom.refcount == 0) { in libinput_libwacom_unref()
4591 libwacom_database_destroy(li->libwacom.db); in libinput_libwacom_unref()
4592 li->libwacom.db = NULL; in libinput_libwacom_unref()
Dlibinput-private.h169 } libwacom; member
Devdev-tablet.c940 db = tablet_libinput_context(tablet)->libwacom.db; in tool_set_bits_from_libwacom()
2369 db = tablet_libinput_context(tablet)->libwacom.db; in tablet_is_aes()