forked from minhngoc25a/freetype2
* src/base/ftobjs.c (pixel_modes): Updated.
This commit is contained in:
parent
10a5dfec7f
commit
b6c8542dfc
|
@ -1,3 +1,7 @@
|
|||
2020-12-26 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/base/ftobjs.c (pixel_modes): Updated.
|
||||
|
||||
2020-12-26 Anuj Verma <anujv@iitbhilai.ac.in>
|
||||
|
||||
[sdf] Remove custom memory tracker.
|
||||
|
|
|
@ -209,6 +209,11 @@ FT_BEGIN_HEADER
|
|||
#define ft_pixel_mode_pal2 FT_PIXEL_MODE_GRAY2
|
||||
#define ft_pixel_mode_pal4 FT_PIXEL_MODE_GRAY4
|
||||
|
||||
/* */
|
||||
|
||||
/* For debugging, the @FT_Pixel_Mode enumeration must stay in sync */
|
||||
/* with the `pixel_modes` array in file `ftobjs.c`. */
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
*
|
||||
|
|
|
@ -78,6 +78,9 @@
|
|||
#pragma warning( pop )
|
||||
#endif
|
||||
|
||||
/* This array must stay in sync with the @FT_Pixel_Mode enumeration */
|
||||
/* (in file `ftimage.h`). */
|
||||
|
||||
static const char* const pixel_modes[] =
|
||||
{
|
||||
"none",
|
||||
|
@ -85,6 +88,7 @@
|
|||
"gray 8-bit bitmap",
|
||||
"gray 2-bit bitmap",
|
||||
"gray 4-bit bitmap",
|
||||
"SDF 16-bit bitmap",
|
||||
"LCD 8-bit bitmap",
|
||||
"vertical LCD 8-bit bitmap",
|
||||
"BGRA 32-bit color image bitmap"
|
||||
|
|
Loading…
Reference in New Issue