summaryrefslogtreecommitdiff
path: root/pango/pangoft2.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2004-07-10 21:51:46 +0000
committerOwen Taylor <otaylor@src.gnome.org>2004-07-10 21:51:46 +0000
commit3a1b19f5e7106d1672ad0772a5800514726a7adc (patch)
treee95e291c13c7590ca412165831e37b26197a2c49 /pango/pangoft2.c
parent0835f598fcfbf6667a4be9cd9e7f6f16663dcb6a (diff)
downloadpango-3a1b19f5e7106d1672ad0772a5800514726a7adc.tar.gz
Add _pango prefix for _pango_ft2_font_get_cache_glyph_data and friends
Sat Jul 10 17:45:05 2004 Owen Taylor <otaylor@redhat.com> * pango/pangoft2-private.h: Add _pango prefix for _pango_ft2_font_get_cache_glyph_data and friends defined only in private header file.
Diffstat (limited to 'pango/pangoft2.c')
-rw-r--r--pango/pangoft2.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/pango/pangoft2.c b/pango/pangoft2.c
index 98228282..3578bf4e 100644
--- a/pango/pangoft2.c
+++ b/pango/pangoft2.c
@@ -385,8 +385,8 @@ pango_ft2_render_transformed (FT_Bitmap *bitmap,
PangoFT2RenderedGlyph *rendered_glyph;
glyph_index = gi->glyph;
- rendered_glyph = pango_ft2_font_get_cache_glyph_data (font,
- glyph_index);
+ rendered_glyph = _pango_ft2_font_get_cache_glyph_data (font,
+ glyph_index);
add_glyph_to_cache = FALSE;
if (rendered_glyph == NULL)
{
@@ -491,10 +491,10 @@ pango_ft2_render_transformed (FT_Bitmap *bitmap,
if (add_glyph_to_cache)
{
- pango_ft2_font_set_glyph_cache_destroy (font,
- (GDestroyNotify) pango_ft2_free_rendered_glyph);
- pango_ft2_font_set_cache_glyph_data (font,
- glyph_index, rendered_glyph);
+ _pango_ft2_font_set_glyph_cache_destroy (font,
+ (GDestroyNotify) pango_ft2_free_rendered_glyph);
+ _pango_ft2_font_set_cache_glyph_data (font,
+ glyph_index, rendered_glyph);
}
}
@@ -1064,7 +1064,7 @@ _pango_ft2_ft_strerror (FT_Error error)
void *
-pango_ft2_font_get_cache_glyph_data (PangoFont *font,
+_pango_ft2_font_get_cache_glyph_data (PangoFont *font,
int glyph_index)
{
PangoFT2GlyphInfo *info;
@@ -1080,7 +1080,7 @@ pango_ft2_font_get_cache_glyph_data (PangoFont *font,
}
void
-pango_ft2_font_set_cache_glyph_data (PangoFont *font,
+_pango_ft2_font_set_cache_glyph_data (PangoFont *font,
int glyph_index,
void *cached_glyph)
{
@@ -1096,8 +1096,8 @@ pango_ft2_font_set_cache_glyph_data (PangoFont *font,
}
void
-pango_ft2_font_set_glyph_cache_destroy (PangoFont *font,
- GDestroyNotify destroy_notify)
+_pango_ft2_font_set_glyph_cache_destroy (PangoFont *font,
+ GDestroyNotify destroy_notify)
{
g_return_if_fail (PANGO_FT2_IS_FONT (font));