diff options
Diffstat (limited to 'render/glyph.c')
-rw-r--r-- | render/glyph.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/render/glyph.c b/render/glyph.c index a143e9eb5..a9dddaf57 100644 --- a/render/glyph.c +++ b/render/glyph.c @@ -684,3 +684,13 @@ miGlyphs(CARD8 op, (*pScreen->DestroyPixmap) (pMaskPixmap); } } + +PicturePtr GetGlyphPicture(GlyphPtr glyph, ScreenPtr pScreen) +{ + return GlyphPicture(glyph)[pScreen->myNum]; +} + +void SetGlyphPicture(GlyphPtr glyph, ScreenPtr pScreen, PicturePtr picture) +{ + GlyphPicture(glyph)[pScreen->myNum] = picture; +} |