diff options
Diffstat (limited to 'fb/fbpict.c')
-rw-r--r-- | fb/fbpict.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fb/fbpict.c b/fb/fbpict.c index 324d9b272..84d19ac29 100644 --- a/fb/fbpict.c +++ b/fb/fbpict.c @@ -1036,6 +1036,10 @@ create_bits_picture (PicturePtr pict) */ pixman_image_set_clip_region (image, pict->pCompositeClip); + /* Indexed table */ + if (pict->pFormat->index.devPrivate) + pixman_image_set_indexed (image, pict->pFormat->index.devPrivate); + fbFinishAccess (pict->pDrawable); return image; |