File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -60,10 +60,15 @@ typedef agg::renderer_scanline_aa_solid<renderer_base> renderer_aa;
60
60
typedef agg::renderer_scanline_bin_solid<renderer_base> renderer_bin;
61
61
typedef agg::rasterizer_scanline_aa<agg::rasterizer_sl_clip_dbl> rasterizer;
62
62
63
- typedef agg::scanline_p8 scanline_p8;
64
- typedef agg::scanline_bin scanline_bin;
63
+ // typedef agg::scanline_p8 scanline_p8; // 16 bits display rendering
64
+ // typedef agg::scanline_bin scanline_bin; // 16 bits display rendering
65
+ typedef agg::scanline32_p8 scanline_p8; // 32 bits display rendering
66
+ typedef agg::scanline32_bin scanline_bin; // 32 bits display rendering
67
+
65
68
typedef agg::amask_no_clip_gray8 alpha_mask_type;
66
- typedef agg::scanline_u8_am<alpha_mask_type> scanline_am;
69
+
70
+ // typedef agg::scanline_u8_am<alpha_mask_type> scanline_am; // 16 bits display rendering
71
+ typedef agg::scanline32_u8_am<alpha_mask_type> scanline_am; // 32 bits display rendering
67
72
68
73
typedef agg::renderer_base<agg::pixfmt_gray8> renderer_base_alpha_mask_type;
69
74
typedef agg::renderer_scanline_aa_solid<renderer_base_alpha_mask_type> renderer_alpha_mask_type;
Original file line number Diff line number Diff line change 183
183
184
184
/* the data about edges, zones, and points -- boundary or not, exists
185
185
* or not, z value 0, 1, or 2 -- is kept in a mesh sized data array */
186
- typedef short Cdata ;
186
+ // typedef short Cdata; // 16 bits display rendering
187
+ typedef int Cdata ; // 32 bits display rendering
187
188
188
189
/* information to decide on correct contour direction in saddle zones
189
190
* is stored in a mesh sized array. Only those entries corresponding
You can’t perform that action at this time.
0 commit comments