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>
This commit is contained in:
parent
9dffcda804
commit
3c2c59eed3
|
@ -82,7 +82,7 @@ fbDestroyGlyphCache(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
void
|
||||||
fbUnrealizeGlyph(ScreenPtr pScreen,
|
fbUnrealizeGlyph(ScreenPtr pScreen,
|
||||||
GlyphPtr pGlyph)
|
GlyphPtr pGlyph)
|
||||||
{
|
{
|
||||||
|
@ -90,7 +90,7 @@ fbUnrealizeGlyph(ScreenPtr pScreen,
|
||||||
pixman_glyph_cache_remove (glyphCache, pGlyph, NULL);
|
pixman_glyph_cache_remove (glyphCache, pGlyph, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
void
|
||||||
fbGlyphs(CARD8 op,
|
fbGlyphs(CARD8 op,
|
||||||
PicturePtr pSrc,
|
PicturePtr pSrc,
|
||||||
PicturePtr pDst,
|
PicturePtr pDst,
|
||||||
|
|
15
fb/fbpict.h
15
fb/fbpict.h
|
@ -65,11 +65,24 @@ fbTrapezoids(CARD8 op,
|
||||||
INT16 xSrc, INT16 ySrc, int ntrap, xTrapezoid * traps);
|
INT16 xSrc, INT16 ySrc, int ntrap, xTrapezoid * traps);
|
||||||
|
|
||||||
extern _X_EXPORT void
|
extern _X_EXPORT void
|
||||||
|
|
||||||
fbTriangles(CARD8 op,
|
fbTriangles(CARD8 op,
|
||||||
PicturePtr pSrc,
|
PicturePtr pSrc,
|
||||||
PicturePtr pDst,
|
PicturePtr pDst,
|
||||||
PictFormatPtr maskFormat,
|
PictFormatPtr maskFormat,
|
||||||
INT16 xSrc, INT16 ySrc, int ntris, xTriangle * tris);
|
INT16 xSrc, INT16 ySrc, int ntris, xTriangle * tris);
|
||||||
|
|
||||||
|
extern _X_EXPORT void
|
||||||
|
fbUnrealizeGlyph(ScreenPtr pScreen,
|
||||||
|
GlyphPtr pGlyph);
|
||||||
|
|
||||||
|
extern _X_EXPORT void
|
||||||
|
fbGlyphs(CARD8 op,
|
||||||
|
PicturePtr pSrc,
|
||||||
|
PicturePtr pDst,
|
||||||
|
PictFormatPtr maskFormat,
|
||||||
|
INT16 xSrc,
|
||||||
|
INT16 ySrc, int nlist,
|
||||||
|
GlyphListPtr list,
|
||||||
|
GlyphPtr *glyphs);
|
||||||
|
|
||||||
#endif /* _FBPICT_H_ */
|
#endif /* _FBPICT_H_ */
|
||||||
|
|
Loading…
Reference in New Issue