pango_ft2_font_get_coverage
- From: "Matthias Clasen" <matthiasc poet de>
- To: <gtk-devel-list gnome org>
- Subject: pango_ft2_font_get_coverage
- Date: Fri, 23 Nov 2001 08:34:33 +0100
Looking at the undocumented functions in pango 0.22,
I notice pango_ft2_font_get_coverage isn't static like
the other get_coverage implementations, thus it shows up
as an undocumented function. The reason that it can't be
static is that it is used in modules/basic/basic-ft2.c:
static PangoCoverage *
basic_engine_get_coverage (PangoFont *font,
PangoLanguage *lang)
{
return pango_ft2_font_get_coverage (font, lang);
}
Is there any reason that this cannot be implemented like the
corresponding function in modules/basic/basic-xft.c ?
static PangoCoverage *
basic_engine_get_coverage (PangoFont *font,
PangoLanguage *lang)
{
return pango_font_get_coverage (font, lang);
}
Matthias
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]