File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Original file line number Diff line number Diff line change @@ -182,8 +182,8 @@ class RendererAgg
182
182
template <class CoordinateArray , class OffsetArray , class ColorArray >
183
183
void draw_quad_mesh (GCAgg &gc,
184
184
agg::trans_affine &master_transform,
185
- size_t mesh_width,
186
- size_t mesh_height,
185
+ unsigned int mesh_width,
186
+ unsigned int mesh_height,
187
187
CoordinateArray &coordinates,
188
188
OffsetArray &offsets,
189
189
agg::trans_affine &offset_trans,
@@ -1148,8 +1148,8 @@ class QuadMeshGenerator
1148
1148
template <class CoordinateArray , class OffsetArray , class ColorArray >
1149
1149
inline void RendererAgg::draw_quad_mesh (GCAgg &gc,
1150
1150
agg::trans_affine &master_transform,
1151
- size_t mesh_width,
1152
- size_t mesh_height,
1151
+ unsigned int mesh_width,
1152
+ unsigned int mesh_height,
1153
1153
CoordinateArray &coordinates,
1154
1154
OffsetArray &offsets,
1155
1155
agg::trans_affine &offset_trans,
Original file line number Diff line number Diff line change @@ -390,8 +390,8 @@ static PyObject *PyRendererAgg_draw_quad_mesh(PyRendererAgg *self, PyObject *arg
390
390
{
391
391
GCAgg gc;
392
392
agg::trans_affine master_transform;
393
- size_t mesh_width;
394
- size_t mesh_height;
393
+ unsigned int mesh_width;
394
+ unsigned int mesh_height;
395
395
numpy::array_view<const double , 3 > coordinates;
396
396
numpy::array_view<const double , 2 > offsets;
397
397
agg::trans_affine offset_trans;
You can’t perform that action at this time.
0 commit comments