diff options
Diffstat (limited to 'render/picture.c')
-rw-r--r-- | render/picture.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/render/picture.c b/render/picture.c index 522eb4fa9..cc1336994 100644 --- a/render/picture.c +++ b/render/picture.c @@ -974,8 +974,10 @@ static PicturePtr createSourcePicture(void) PicturePtr pPicture; pPicture = (PicturePtr) xalloc(sizeof(PictureRec)); pPicture->pDrawable = 0; + pPicture->format = PICT_a8r8g8b8; pPicture->pFormat = 0; pPicture->pNext = 0; + pPicture->devPrivates = 0; SetPictureToDefaults(pPicture); return pPicture; |