Spaces:
Running
Running
File size: 690 Bytes
5cee033 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
//========================================================================
//
// SplashGlyphBitmap.h
//
//========================================================================
#ifndef SPLASHGLYPHBITMAP_H
#define SPLASHGLYPHBITMAP_H
//------------------------------------------------------------------------
// SplashGlyphBitmap
//------------------------------------------------------------------------
struct SplashGlyphBitmap
{
int x, y, w, h; // offset and size of glyph
bool aa; // anti-aliased: true means 8-bit alpha
// bitmap; false means 1-bit
unsigned char *data; // bitmap data
bool freeData; // true if data memory should be freed
};
#endif
|