diff options
author | Keith Packard <keithp@keithp.com> | 2014-04-01 21:15:41 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-04-03 13:07:51 -0700 |
commit | 3c2c59eed3c68c0e5a93c38cf01eedad015e3157 (patch) | |
tree | 4144a187f7c3eb0cf8918d961d24437c6d7ed9d2 /fb/fbpict.c | |
parent | 9dffcda804b2609f0b319d35dd47fd401d4fafce (diff) |
fb: Publish fbGlyphs and fbUnrealizeGlyph
This lets other code jump directly into the fb code for fallbacks
Signed-off-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'fb/fbpict.c')
-rw-r--r-- | fb/fbpict.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fb/fbpict.c b/fb/fbpict.c index b50385805..c2ee8a552 100644 --- a/fb/fbpict.c +++ b/fb/fbpict.c @@ -82,7 +82,7 @@ fbDestroyGlyphCache(void) } } -static void +void fbUnrealizeGlyph(ScreenPtr pScreen, GlyphPtr pGlyph) { @@ -90,7 +90,7 @@ fbUnrealizeGlyph(ScreenPtr pScreen, pixman_glyph_cache_remove (glyphCache, pGlyph, NULL); } -static void +void fbGlyphs(CARD8 op, PicturePtr pSrc, PicturePtr pDst, |