beta-0.89.2
[luatex.git] / source / libs / poppler / poppler-src / splash / SplashGlyphBitmap.h
blobc062c106e6a42b5d48290d90f46aa826d528193b
1 //========================================================================
2 //
3 // SplashGlyphBitmap.h
4 //
5 //========================================================================
7 #ifndef SPLASHGLYPHBITMAP_H
8 #define SPLASHGLYPHBITMAP_H
10 #include "goo/gtypes.h"
12 //------------------------------------------------------------------------
13 // SplashGlyphBitmap
14 //------------------------------------------------------------------------
16 struct SplashGlyphBitmap {
17 int x, y, w, h; // offset and size of glyph
18 GBool aa; // anti-aliased: true means 8-bit alpha
19 // bitmap; false means 1-bit
20 Guchar *data; // bitmap data
21 GBool freeData; // true if data memory should be freed
24 #endif