search for: xf86scrntoscreen

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

2018 Jan 13
0
[PATCH] drmmode: update logic for dynamic connectors, paths, and tiles
...ncoder = kencoder; drmmode_output->drmmode = drmmode; @@ -1316,6 +1458,9 @@ drmmode_output_init(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int num, int crtcshi output->interlaceAllowed = true; output->doubleScanAllowed = true; + if (dynamic) + output->randr_output = RROutputCreate(xf86ScrnToScreen(pScrn), output->name, strlen(output->name), output); + return 1; } @@ -1429,6 +1574,7 @@ static const xf86CrtcConfigFuncsRec drmmode_xf86crtc_config_funcs = { Bool drmmode_pre_init(ScrnInfoPtr pScrn, int fd, int cpp) { drmmode_ptr drmmode; + drmModeResPtr mode_res; NVEntPtr pNVEnt...
2018 Oct 09
0
[PATCH] drmmode: update logic for dynamic connectors, paths, and tiles
...ncoder = kencoder; drmmode_output->drmmode = drmmode; @@ -1316,6 +1469,9 @@ drmmode_output_init(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int num, int crtcshi output->interlaceAllowed = true; output->doubleScanAllowed = true; + if (dynamic) + output->randr_output = RROutputCreate(xf86ScrnToScreen(pScrn), output->name, strlen(output->name), output); + return 1; } @@ -1429,6 +1585,7 @@ static const xf86CrtcConfigFuncsRec drmmode_xf86crtc_config_funcs = { Bool drmmode_pre_init(ScrnInfoPtr pScrn, int fd, int cpp) { drmmode_ptr drmmode; + drmModeResPtr mode_res; NVEntPtr pNVEnt...
2017 Mar 29
0
[Bug 98383] X server is crashing/eats 100% cpu when turning on monitor
...to apply the following patch: diff --git a/src/drmmode_display.c b/src/drmmode_display.c index dd9fa27..a468223 100644 --- a/src/drmmode_display.c +++ b/src/drmmode_display.c @@ -1542,7 +1542,7 @@ drmmode_handle_uevents(ScrnInfoPtr scrn) if (!dev) return; - RRGetInfo(xf86ScrnToScreen(scrn), TRUE); + //RRGetInfo(xf86ScrnToScreen(scrn), TRUE); udev_device_unref(dev); } #endif Otherwise - when I turn on the TV on other Xorg instance (with intel driver), the xorg is crashing. Maybe nouveau is trying to do something wrong with the randr event on other xorg instance?...