ES-DE/.flatpak-builder/cache/objects/f4/33aa889148d65d23cf5b66aa478c6b2086efd8cadbe4622b7cdc96fb65652f.file
2024-07-19 09:55:58 +00:00

24 lines
690 B
Plaintext

//========================================================================
//
// 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