File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1770,8 +1770,8 @@ static int _transformation_converter(PyObject* object, void* pointer)
1770
1770
GraphicsContext_draw_quad_mesh (GraphicsContext* self, PyObject* args)
1771
1771
{
1772
1772
CGAffineTransform master;
1773
- size_t meshWidth;
1774
- size_t meshHeight;
1773
+ int meshWidth;
1774
+ int meshHeight;
1775
1775
PyObject* coordinates;
1776
1776
PyArrayObject* coordinates_arr = 0 ;
1777
1777
PyObject* offsets;
@@ -1793,7 +1793,7 @@ static int _transformation_converter(PyObject* object, void* pointer)
1793
1793
return NULL ;
1794
1794
}
1795
1795
1796
- if (!PyArg_ParseTuple (args, " O&IIOOO &OiO" ,
1796
+ if (!PyArg_ParseTuple (args, " O&iiOOO &OiO" ,
1797
1797
_transformation_converter, &master,
1798
1798
&meshWidth,
1799
1799
&meshHeight,
@@ -1887,8 +1887,8 @@ static int _transformation_converter(PyObject* object, void* pointer)
1887
1887
}
1888
1888
1889
1889
size_t i = 0 ;
1890
- size_t iw = 0 ;
1891
- size_t ih = 0 ;
1890
+ int iw = 0 ;
1891
+ int ih = 0 ;
1892
1892
1893
1893
/* Preset graphics context properties if possible */
1894
1894
CGContextSetShouldAntialias (cr, antialiased);
You can’t perform that action at this time.
0 commit comments