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:
Eric Anholt 2007-03-27 13:12:21 -07:00
parent 5e7936371c
commit 0bfc3cc22d
1 changed files with 5 additions and 0 deletions

View File

@ -696,6 +696,11 @@ CompositeExtensionInit (void)
if (GetPictureScreenIfSet(pScreen) == NULL)
return;
}
/* Xinerama's rewriting of window drawing before Composite gets to it
* breaks Composite.
*/
if (!noPanoramiXExtension)
return;
CompositeClientWindowType = CreateNewResourceType (FreeCompositeClientWindow);
if (!CompositeClientWindowType)