search for: has_dixregisterprivatekey

Displaying 3 results from an estimated 3 matches for "has_dixregisterprivatekey".

2017 Mar 29
2
[PATCH xf86-video-nouveau] Do not register hotplug without RandR
...le changed, 15 insertions(+) diff --git a/src/drmmode_display.c b/src/drmmode_display.c index dd9fa27..ae29d9a 100644 --- a/src/drmmode_display.c +++ b/src/drmmode_display.c @@ -1556,6 +1556,15 @@ drmmode_udev_notify(int fd, int notify, void *data) } #endif +static bool has_randr(void) +{ +#if HAS_DIXREGISTERPRIVATEKEY + return dixPrivateKeyRegistered(rrPrivKey); +#else + return *rrPrivKey; +#endif +} + static void drmmode_uevent_init(ScrnInfoPtr scrn) { @@ -1564,6 +1573,12 @@ drmmode_uevent_init(ScrnInfoPtr scrn) struct udev *u; struct udev_monitor *mon; + /* RandR will be disabled if Xinerama is active...
2017 Mar 29
0
[PATCH xf86-video-nouveau] Do not register hotplug without RandR
...rmmode_display.c b/src/drmmode_display.c > index dd9fa27..ae29d9a 100644 > --- a/src/drmmode_display.c > +++ b/src/drmmode_display.c > @@ -1556,6 +1556,15 @@ drmmode_udev_notify(int fd, int notify, void *data) > } > #endif > > +static bool has_randr(void) > +{ > +#if HAS_DIXREGISTERPRIVATEKEY > + return dixPrivateKeyRegistered(rrPrivKey); > +#else > + return *rrPrivKey; > +#endif > +} > + > static void > drmmode_uevent_init(ScrnInfoPtr scrn) > { > @@ -1564,6 +1573,12 @@ drmmode_uevent_init(ScrnInfoPtr scrn) > struct udev *u; >...
2024 Nov 08
0
[ANNOUNCE] xf86-video-nouveau 1.0.18
...libtool is installed in build container Dave Airlie (1): nouveau: fixup driver for new X server ABI Enrico Weigelt, metux IT consult (8): bump minimal xorg version to 1.18 drop check for xorg_list_init() drop compat for ancient server versions drop obsolete check for HAS_DIXREGISTERPRIVATEKEY drop compat with ancient ABI_VIDEODRV_VERSION < 20 use XNFalloc() instead of xnfalloc use XNFcallocarray() instead of xnfcalloc macro use dixDestroyPixmap() instead of direct driver call Ilia Mirkin (1): remove sarea.h usage Matt Turner (1): xf86-video-nouve...