Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-11 10:26:10

0001 //========================================================================
0002 //
0003 // SplashGlyphBitmap.h
0004 //
0005 //========================================================================
0006 
0007 #ifndef SPLASHGLYPHBITMAP_H
0008 #define SPLASHGLYPHBITMAP_H
0009 
0010 //------------------------------------------------------------------------
0011 // SplashGlyphBitmap
0012 //------------------------------------------------------------------------
0013 
0014 struct SplashGlyphBitmap
0015 {
0016     int x, y, w, h; // offset and size of glyph
0017     bool aa; // anti-aliased: true means 8-bit alpha
0018              //   bitmap; false means 1-bit
0019     unsigned char *data; // bitmap data
0020     bool freeData; // true if data memory should be freed
0021 };
0022 
0023 #endif