Disable composite when Xinerama is active.
It will likely take a decent bit of work to make that work right.
This commit is contained in:
parent
5e7936371c
commit
0bfc3cc22d
|
@ -696,6 +696,11 @@ CompositeExtensionInit (void)
|
||||||
if (GetPictureScreenIfSet(pScreen) == NULL)
|
if (GetPictureScreenIfSet(pScreen) == NULL)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
/* Xinerama's rewriting of window drawing before Composite gets to it
|
||||||
|
* breaks Composite.
|
||||||
|
*/
|
||||||
|
if (!noPanoramiXExtension)
|
||||||
|
return;
|
||||||
|
|
||||||
CompositeClientWindowType = CreateNewResourceType (FreeCompositeClientWindow);
|
CompositeClientWindowType = CreateNewResourceType (FreeCompositeClientWindow);
|
||||||
if (!CompositeClientWindowType)
|
if (!CompositeClientWindowType)
|
||||||
|
|
Loading…
Reference in New Issue