diff options
Diffstat (limited to 'Build/source/libs/poppler/poppler-src/splash/SplashGlyphBitmap.h')
-rw-r--r-- | Build/source/libs/poppler/poppler-src/splash/SplashGlyphBitmap.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Build/source/libs/poppler/poppler-src/splash/SplashGlyphBitmap.h b/Build/source/libs/poppler/poppler-src/splash/SplashGlyphBitmap.h new file mode 100644 index 00000000000..c062c106e6a --- /dev/null +++ b/Build/source/libs/poppler/poppler-src/splash/SplashGlyphBitmap.h @@ -0,0 +1,24 @@ +//======================================================================== +// +// SplashGlyphBitmap.h +// +//======================================================================== + +#ifndef SPLASHGLYPHBITMAP_H +#define SPLASHGLYPHBITMAP_H + +#include "goo/gtypes.h" + +//------------------------------------------------------------------------ +// SplashGlyphBitmap +//------------------------------------------------------------------------ + +struct SplashGlyphBitmap { + int x, y, w, h; // offset and size of glyph + GBool aa; // anti-aliased: true means 8-bit alpha + // bitmap; false means 1-bit + Guchar *data; // bitmap data + GBool freeData; // true if data memory should be freed +}; + +#endif |