e39da397f5
* removed the useless parts of AGG (which are only needed for the interactive examples) * make sure to jam -a libagg.a to solve any linking issues git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17838 a95241bf-73f2-0310-859d-f6bbb57e9c96
27 lines
663 B
C
27 lines
663 B
C
#ifndef AGG_CONFIG_INCLUDED
|
|
#define AGG_CONFIG_INCLUDED
|
|
|
|
// This file can be used to redefine the default basic types such as:
|
|
//
|
|
// AGG_INT8
|
|
// AGG_INT8U
|
|
// AGG_INT16
|
|
// AGG_INT16U
|
|
// AGG_INT32
|
|
// AGG_INT32U
|
|
// AGG_INT64
|
|
// AGG_INT64U
|
|
//
|
|
// Just replace this file with new defines if necessary.
|
|
// For example, if your compiler doesn't have a 64 bit integer type
|
|
// you can still use AGG if you define the follows:
|
|
//
|
|
// #define AGG_INT64 int
|
|
// #define AGG_INT64U unsigned
|
|
//
|
|
// It will result in overflow in 16 bit-per-component image/pattern resampling
|
|
// but it won't result any crash and the rest of the library will remain
|
|
// fully functional.
|
|
|
|
#endif
|