XQuartz: Don't enable 8bit visuals in the TrueColor server, since it's not working yet
(cherry picked from commit 1317c8ff94c4bd32617a5398e929f667bd87da58)
This commit is contained in:
parent
23ec8261b6
commit
d8d555bac7
|
@ -215,9 +215,10 @@ static Bool DarwinAddScreen(int index, ScreenPtr pScreen, int argc, char **argv)
|
||||||
dfb->greenMask, dfb->blueMask)) {
|
dfb->greenMask, dfb->blueMask)) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(dfb->depth > 8)
|
// TODO: Make PseudoColor visuals not suck in TrueColor mode
|
||||||
miSetVisualTypesAndMasks(8, PseudoColorMask, 8, PseudoColor, 0, 0, 0);
|
// if(dfb->depth > 8)
|
||||||
|
// miSetVisualTypesAndMasks(8, PseudoColorMask, 8, PseudoColor, 0, 0, 0);
|
||||||
if(dfb->depth > 15)
|
if(dfb->depth > 15)
|
||||||
miSetVisualTypesAndMasks(15, LARGE_VISUALS, 5, TrueColor, 0x7c00, 0x03e0, 0x001f);
|
miSetVisualTypesAndMasks(15, LARGE_VISUALS, 5, TrueColor, 0x7c00, 0x03e0, 0x001f);
|
||||||
if(dfb->depth > 24)
|
if(dfb->depth > 24)
|
||||||
|
|
Loading…
Reference in New Issue