mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
Log udev feature.
This commit is contained in:
parent
d21046ace8
commit
8963504778
@ -32,6 +32,12 @@ static const bool _kms_supp = true;
|
||||
static const bool _kms_supp = false;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_UDEV
|
||||
static const bool _udev_supp = true;
|
||||
#else
|
||||
static const bool _udev_supp = false;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_VG
|
||||
static const bool _vg_supp = true;
|
||||
#else
|
||||
|
@ -626,6 +626,7 @@ static void print_features(void)
|
||||
_PSUPP(thread, "Threads", "Threading support");
|
||||
_PSUPP(opengl, "OpenGL", "OpenGL driver");
|
||||
_PSUPP(kms, "KMS", "KMS/EGL context support");
|
||||
_PSUPP(udev, "UDEV", "UDEV/EVDEV input driver support");
|
||||
_PSUPP(egl, "EGL", "EGL context support");
|
||||
_PSUPP(vg, "OpenVG", "OpenVG output support");
|
||||
_PSUPP(xvideo, "XVideo", "XVideo output");
|
||||
|
Loading…
Reference in New Issue
Block a user