Fix a really dumb typo.
This commit is contained in:
parent
f797c96845
commit
8d0cd1cd2c
|
@ -202,7 +202,7 @@ typedef void (* ClipNotifyProcPtr)(
|
||||||
/* pixmap will be the backing pixmap for a redirected window */
|
/* pixmap will be the backing pixmap for a redirected window */
|
||||||
#define CREATE_PIXMAP_USAGE_BACKING_PIXMAP 2
|
#define CREATE_PIXMAP_USAGE_BACKING_PIXMAP 2
|
||||||
/* pixmap will contain a glyph */
|
/* pixmap will contain a glyph */
|
||||||
#define CREATE_PIMXAP_USAGE_GLYPH_PICTURE 3
|
#define CREATE_PIXMAP_USAGE_GLYPH_PICTURE 3
|
||||||
|
|
||||||
typedef PixmapPtr (* CreatePixmapProcPtr)(
|
typedef PixmapPtr (* CreatePixmapProcPtr)(
|
||||||
ScreenPtr /*pScreen*/,
|
ScreenPtr /*pScreen*/,
|
||||||
|
|
|
@ -1203,7 +1203,7 @@ ProcRenderAddGlyphs (ClientPtr client)
|
||||||
|
|
||||||
pDstPix = (pScreen->CreatePixmap) (pScreen,
|
pDstPix = (pScreen->CreatePixmap) (pScreen,
|
||||||
width, height, depth,
|
width, height, depth,
|
||||||
CREATE_PIMXAP_USAGE_GLYPH_PICTURE);
|
CREATE_PIXMAP_USAGE_GLYPH_PICTURE);
|
||||||
|
|
||||||
GlyphPicture (glyph)[screen] = pDst =
|
GlyphPicture (glyph)[screen] = pDst =
|
||||||
CreatePicture (0, &pDstPix->drawable,
|
CreatePicture (0, &pDstPix->drawable,
|
||||||
|
|
Loading…
Reference in New Issue