~kalon33/corsix-th/master

« back to all changes in this revision

Viewing changes to agg/include/agg_config.h

  • Committer: corsixth.bot at gmail
  • Date: 2014-03-31 23:30:23 UTC
  • Revision ID: svn-v4:c39591fa-788f-11de-a72b-d90af8dea425:trunk:2687
Remove trailing whitespaces in .h, .cpp, .c and .lua files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
//---------------------------------------
7
7
// 1. Default basic types such as:
8
 
// 
 
8
//
9
9
// AGG_INT8
10
10
// AGG_INT8U
11
11
// AGG_INT16
15
15
// AGG_INT64
16
16
// AGG_INT64U
17
17
//
18
 
// Just replace this file with new defines if necessary. 
 
18
// Just replace this file with new defines if necessary.
19
19
// For example, if your compiler doesn't have a 64 bit integer type
20
20
// you can still use AGG if you define the follows:
21
21
//
23
23
// #define AGG_INT64U unsigned
24
24
//
25
25
// It will result in overflow in 16 bit-per-component image/pattern resampling
26
 
// but it won't result any crash and the rest of the library will remain 
 
26
// but it won't result any crash and the rest of the library will remain
27
27
// fully functional.
28
28
 
29
29
 
30
30
//---------------------------------------
31
31
// 2. Default rendering_buffer type. Can be:
32
32
//
33
 
// Provides faster access for massive pixel operations, 
 
33
// Provides faster access for massive pixel operations,
34
34
// such as blur, image filtering:
35
35
// #define AGG_RENDERING_BUFFER row_ptr_cache<int8u>
36
 
// 
 
36
//
37
37
// Provides cheaper creation and destruction (no mem allocs):
38
38
// #define AGG_RENDERING_BUFFER row_accessor<int8u>
39
39
//
40
 
// You can still use both of them simultaneouslyin your applications 
 
40
// You can still use both of them simultaneouslyin your applications
41
41
// This #define is used only for default rendering_buffer type,
42
42
// in short hand typedefs like pixfmt_rgba32.
43
43