mirror of https://github.com/freetype/freetype
* src/base/ftobjs.c (FT_Load_Glyph): Fix signature of `pixel_modes'.
This commit is contained in:
parent
c5a8a5350a
commit
06820637e2
|
@ -1,3 +1,7 @@
|
|||
2018-05-14 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/base/ftobjs.c (FT_Load_Glyph): Fix signature of `pixel_modes'.
|
||||
|
||||
2018-05-14 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
Provide dummy functions if `TT_CONFIG_OPTION_SFNT_NAMES' is not set.
|
||||
|
|
|
@ -1026,15 +1026,17 @@
|
|||
|
||||
#ifdef FT_DEBUG_LEVEL_TRACE
|
||||
{
|
||||
const char* pixel_modes[] = { "none",
|
||||
"monochrome bitmap",
|
||||
"gray 8-bit bitmap",
|
||||
"gray 2-bit bitmap",
|
||||
"gray 4-bit bitmap",
|
||||
"LCD 8-bit bitmap",
|
||||
"vertical LCD 8-bit bitmap",
|
||||
"BGRA 32-bit color image bitmap"
|
||||
};
|
||||
static const char* const pixel_modes[] =
|
||||
{
|
||||
"none",
|
||||
"monochrome bitmap",
|
||||
"gray 8-bit bitmap",
|
||||
"gray 2-bit bitmap",
|
||||
"gray 4-bit bitmap",
|
||||
"LCD 8-bit bitmap",
|
||||
"vertical LCD 8-bit bitmap",
|
||||
"BGRA 32-bit color image bitmap"
|
||||
};
|
||||
|
||||
|
||||
FT_TRACE5(( "FT_Load_Glyph: index %d, flags 0x%x\n",
|
||||
|
|
Loading…
Reference in New Issue