diff options
author | Tor Lillqvist <tml@iki.fi> | 2000-08-20 22:02:14 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2000-08-20 22:02:14 +0000 |
commit | cd3238a63b904fd0792ca04f1dac7ff04ef98eb4 (patch) | |
tree | 20e3507658937baaf610ef3a48bac98439672255 /pango/pangoft2-fontmap.c | |
parent | 1c7f0ddea0ef2f9471a1dd87cebee30443524bd6 (diff) | |
download | pango-cd3238a63b904fd0792ca04f1dac7ff04ef98eb4.tar.gz |
Handle also ft_pixel_mode_mono glyphs.
2000-08-21 Tor Lillqvist <tml@iki.fi>
* pango/pangoft2.c (pango_ft2_render): Handle also ft_pixel_mode_mono
glyphs.
* pango/pangoft2*: Portability enhancements (non-gcc).
* examples/viewer-{ft2,win32}.c: One more 1000 vs. PANGO_SCALE fix.
* pango/module-defs.c.win32: New file.
* pango/Makefile.am: Distribute it.
Diffstat (limited to 'pango/pangoft2-fontmap.c')
-rw-r--r-- | pango/pangoft2-fontmap.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pango/pangoft2-fontmap.c b/pango/pangoft2-fontmap.c index a81c8639..a3e99c5d 100644 --- a/pango/pangoft2-fontmap.c +++ b/pango/pangoft2-fontmap.c @@ -21,6 +21,7 @@ #include "config.h" +#include <glib.h> #include <ctype.h> #include <stdio.h> #include <stdlib.h> @@ -35,6 +36,12 @@ #include "pango-utils.h" #include "pangoft2-private.h" +#ifdef G_OS_WIN32 +#ifndef S_ISREG +#define S_ISREG(mode) ((mode) & _S_IFREG) +#endif +#endif + #define PANGO_TYPE_FT2_FONT_MAP (pango_ft2_font_map_get_type ()) #define PANGO_FT2_FONT_MAP(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), PANGO_TYPE_FT2_FONT_MAP, PangoFT2FontMap)) #define PANGO_FT2_FONT_MAP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PANGO_TYPE_FT2_FONT_MAP, PangoFT2FontMapClass)) |