diff options
Diffstat (limited to 'exa/exa_glyphs.c')
-rw-r--r-- | exa/exa_glyphs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/exa/exa_glyphs.c b/exa/exa_glyphs.c index 61b46b55e..25ac8d3e3 100644 --- a/exa/exa_glyphs.c +++ b/exa/exa_glyphs.c @@ -185,7 +185,7 @@ exaRealizeGlyphCaches(ScreenPtr pScreen, /* Now allocate the pixmap and picture */ pPixmap = (*pScreen->gpu.CreatePixmap) (pScreen, CACHE_PICTURE_WIDTH, - height, depth, 0); + height, depth, 0 , NULL); if (!pPixmap) return FALSE; @@ -737,7 +737,7 @@ exaGlyphs (CARD8 op, pMaskPixmap = (*pScreen->gpu.CreatePixmap) (pScreen, width, height, maskFormat->depth, - CREATE_PIXMAP_USAGE_SCRATCH); + CREATE_PIXMAP_USAGE_SCRATCH, NULL); if (!pMaskPixmap) return; component_alpha = NeedsComponent(maskFormat->format); @@ -765,7 +765,7 @@ exaGlyphs (CARD8 op, pMaskPixmap = (*pScreen->gpu.CreatePixmap) (pScreen, width, height, maskFormat->depth, - CREATE_PIXMAP_USAGE_SCRATCH); + CREATE_PIXMAP_USAGE_SCRATCH, NULL); if (!pMaskPixmap) return; |