mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-07 01:38:52 +02:00
Oops, fix ShadowGDI being forced when it doesn't need to be.
This commit is contained in:
parent
1fc050a7d3
commit
de227658f6
1 changed files with 6 additions and 2 deletions
|
|
@ -184,12 +184,16 @@ winSetEngine (ScreenPtr pScreen)
|
|||
}
|
||||
|
||||
/* ShadowGDI is the only engine that supports Multi Window Mode */
|
||||
if (TRUE
|
||||
if (
|
||||
#ifdef XWIN_MULTIWINDOWEXTWM
|
||||
|| pScreenInfo->fMWExtWM
|
||||
pScreenInfo->fMWExtWM
|
||||
#else
|
||||
FALSE
|
||||
#endif
|
||||
#ifdef XWIN_MULTIWINDOW
|
||||
|| pScreenInfo->fMultiWindow
|
||||
#else
|
||||
|| FALSE
|
||||
#endif
|
||||
)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue