fix grid rendering in 32 bit (non bigint) mode
This commit is contained in:
parent
40c51089af
commit
5440594e0c
1 changed files with 4 additions and 0 deletions
|
@ -29,7 +29,11 @@
|
|||
|
||||
namespace mapnik {
|
||||
|
||||
#ifdef BIGINT
|
||||
typedef agg::renderer_base<mapnik::pixfmt_gray64> grid_renderer_base_type;
|
||||
#else
|
||||
typedef agg::renderer_base<mapnik::pixfmt_gray32> grid_renderer_base_type;
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue