On Fri, Oct 09, 2009 at 02:31:46AM -0700, Michel Dänzer wrote: > From: Michel Dänzer <[email protected]> > > They were aimed towards a since abandoned approach for making radeon KMS work > on big endian machines, and Aaron Plattner pointed out that they break the > Composite extension when the X server runs in 16bpp. > > Signed-off-by: Michel Dänzer <[email protected]> > --- > composite/compinit.c | 4 +--- > 1 files changed, 1 insertions(+), 3 deletions(-) > > diff --git a/composite/compinit.c b/composite/compinit.c > index 96ac70f..9b033c8 100644 > --- a/composite/compinit.c > +++ b/composite/compinit.c > @@ -238,7 +238,6 @@ static CompAlternateVisual altVisuals[] = { > { 24, PICT_r8g8b8 }, > #endif > { 32, PICT_a8r8g8b8 }, > - { 32, PICT_b8g8r8a8 }, > }; > > static const int NUM_COMP_ALTERNATE_VISUALS = sizeof(altVisuals) / > @@ -267,8 +266,7 @@ compAddAlternateVisual(ScreenPtr pScreen, CompScreenPtr > cs, > return TRUE; > > pPictFormat = PictureMatchFormat (pScreen, alt->depth, alt->format); > - if (!pPictFormat || > - pPictFormat->direct.red != pScreen->visuals[0].offsetRed) > + if (!pPictFormat) > return FALSE; > > if (ResizeVisualArray(pScreen, 1, depth) == FALSE) { > -- > 1.6.4.3
This fixes the Composite problem for me. Thanks, Michel! Tested-by: Aaron Plattner <[email protected]> _______________________________________________ xorg-devel mailing list [email protected] http://lists.x.org/mailman/listinfo/xorg-devel
