diff options
author | Kevin E Martin <kem@kem.org> | 2004-08-27 01:15:10 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2004-08-27 01:15:10 +0000 |
commit | c0bff215de2d034118d06cac42e234008612204b (patch) | |
tree | db91b09f12c3f994fb64dc451e1c7ddbe3c1d5aa | |
parent | 5335bc8a0657b3e378795b44698ed23020c13891 (diff) |
Fix xtest failures in Xvfb from XMatchVisualInfo test.
-rw-r--r-- | hw/vfb/InitOutput.c | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/hw/vfb/InitOutput.c b/hw/vfb/InitOutput.c index 44ce521d6..0fbf014d6 100644 --- a/hw/vfb/InitOutput.c +++ b/hw/vfb/InitOutput.c @@ -882,16 +882,22 @@ vfbScreenInit(int index, ScreenPtr pScreen, int argc, char **argv) 8, PseudoColor, 0x07, 0x38, 0xc0); break; case 15: - miSetVisualTypesAndMasks (15, (1 << TrueColor), 8, TrueColor, - 0x7c00, 0x03e0, 0x001f); + miSetVisualTypesAndMasks (15, + ((1 << TrueColor) | + (1 << DirectColor)), + 8, TrueColor, 0x7c00, 0x03e0, 0x001f); break; case 16: - miSetVisualTypesAndMasks (16, (1 << TrueColor), 8, TrueColor, - 0xf800, 0x07e0, 0x001f); + miSetVisualTypesAndMasks (16, + ((1 << TrueColor) | + (1 << DirectColor)), + 8, TrueColor, 0xf800, 0x07e0, 0x001f); break; case 24: - miSetVisualTypesAndMasks (24, (1 << TrueColor), 8, TrueColor, - 0xff0000, 0x00ff00, 0x0000ff); + miSetVisualTypesAndMasks (24, + ((1 << TrueColor) | + (1 << DirectColor)), + 8, TrueColor, 0xff0000, 0x00ff00, 0x0000ff); break; } |