Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

Paintlib/config.h

Go to the documentation of this file.
00001 /* Define if your processor stores words with the most significant byte first
00002    (like Motorola and SPARC, unlike Intel and VAX). */
00003 #undef WORDS_BIGENDIAN
00004 
00005 // Byte order in a 32 bit word
00006 #ifdef WORDS_BIGENDIAN
00007 #define MSB_FIRST  // Motorola et al.
00008 #else
00009 #define LSB_FIRST // Intel et al.
00010 #endif
00011 
00012 #undef PL_SUPPORT_TGA
00013 #undef PL_SUPPORT_BMP
00014 #undef PL_SUPPORT_TIFF
00015 #undef PL_SUPPORT_PICT
00016 #undef PL_SUPPORT_JPEG
00017 #undef PL_SUPPORT_PNG
00018 #undef PL_SUPPORT_GIF
00019 #ifdef _WINDOWS
00020   #define PL_SUPPORT_WEMF
00021 #endif
00022 #undef PL_SUPPORT_PCX
00023 #undef PL_SUPPORT_PGM
00024 #undef PL_SUPPORT_PPM
00025 #undef PL_SUPPORT_PSD
00026 
00027 //#ifdef _WINDOWS
00028 //#define PL_PIXEL_BGRA_ORDER  // MS Windows ordering
00029 //#else
00030 #define PL_PIXEL_RGBA_ORDER // GNU/Linux (at least)
00031 //#endif
00032 
00033 // The following lines can be used to define maximum memory useage
00034 // for a single BITMAP. If we need more, we assume something went wrong.
00035 // If MAX_BITMAP_SIZE isn't defined, the code doesn't check for huge
00036 // bitmaps and just tries to allocate the memory. This can take a
00037 // long time.
00038 // #ifndef MAX_BITMAP_SIZE
00039 // #define MAX_BITMAP_SIZE 8L*1024*1024
00040 // #endif
00041 

Generated on Wed Dec 15 21:20:28 2004 for vuVolume by  doxygen 1.3.9.1