commit 4ed2290b674564bea82d50070d4c5fcd9e586225 Author: Pierre Willenbrock Date: Wed Dec 3 20:55:50 2008 +0100 Add check for 1bpp solid fills diff --git a/src/i830_exa.c b/src/i830_exa.c index baa8d87..c4bd539 100644 --- a/src/i830_exa.c +++ b/src/i830_exa.c @@ -184,6 +184,8 @@ I830EXAPrepareSolid(PixmapPtr pPixmap, int alu, Pixel planemask, Pixel fg) if (pPixmap->drawable.bitsPerPixel == 24) I830FALLBACK("solid 24bpp unsupported!\n"); + if (pPixmap->drawable.bitsPerPixel == 1) + I830FALLBACK("solid 1bpp unsupported!\n"); i830_exa_check_pitch_2d(pPixmap);