Text.mui cleanup:
[AROS.git] / workbench / libs / muimaster / classes / pixmap_private.h
blobbf25d25e0b7e59570a02ae382388f3ca369bc40c
1 #ifndef _PIXMAP_PRIVATE_H_
2 #define _PIXMAP_PRIVATE_H_
4 /*
5 Copyright © 2011, Thore Böckelmann. All rights reserved.
6 Copyright © 2012, The AROS Development Team. All rights reserved.
7 $Id$
8 */
10 struct Pixmap_DATA
12 LONG leftOffset;
13 LONG topOffset;
14 APTR data;
15 LONG width;
16 LONG height;
17 ULONG format;
18 APTR clut;
19 ULONG alpha;
20 ULONG compression;
21 ULONG compressedSize;
22 ULONG screenDepth;
23 APTR uncompressedData;
24 APTR ditheredData;
25 APTR ditheredMask;
26 LONG ditheredPenMap[256];
27 struct BitMap *ditheredBitmap;
30 #endif /* _PIXMAP_PRIVATE_H_ */