diff options
-rw-r--r-- | src/mesa/drivers/dri/unichrome/via_ioctl.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/unichrome/via_ioctl.c b/src/mesa/drivers/dri/unichrome/via_ioctl.c index c7b616f405..7e7b933bec 100644 --- a/src/mesa/drivers/dri/unichrome/via_ioctl.c +++ b/src/mesa/drivers/dri/unichrome/via_ioctl.c @@ -242,6 +242,16 @@ static void viaClear(GLcontext *ctx, GLbitfield mask, GLboolean all, } } } + + /* 16bpp doesn't support masked clears */ + if (vmesa->viaScreen->bytesPerPixel == 2 && + vmesa->ClearMask & 0xf0000000) { + if (flag & VIA_FRONT) + mask |= DD_FRONT_LEFT_BIT; + if (flag & VIA_BACK) + mask |= DD_BACK_LEFT_BIT; + flag &= ~(VIA_FRONT | VIA_BACK); + } if (flag) { drm_clip_rect_t *boxes, *tmp_boxes = 0; |