summaryrefslogtreecommitdiff
path: root/render/glyph.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2012-05-05 09:38:28 +0100
committerDave Airlie <airlied@redhat.com>2012-05-21 12:59:20 +0100
commita45e1d6cc6f2a5f31ed737294351cfa251caa030 (patch)
tree7b9b5ccdbab2212eb989d82f1f8d76f02d0ef019 /render/glyph.c
parent41151f88a62f01b00c1912822b8b430df1eb307e (diff)
render: add GetGlyphPicture accessor.
This is a new API to stop the drivers directly looking up the glyph pictures in a global array. It provides a define GLYPH_HAS_GLYPH_PICTURE_ACCESSOR for drivers to work in a compat way. Reviewed-by: Aaron Plattner <aplattner@nvidia.com> Reviewed-by: Keith Packard <keithp@keithp.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'render/glyph.c')
-rw-r--r--render/glyph.c10
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;
+}