File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1770,8 +1770,8 @@ static int _transformation_converter(PyObject* object, void* pointer)
17701770GraphicsContext_draw_quad_mesh (GraphicsContext* self, PyObject* args)
17711771{
17721772 CGAffineTransform master;
1773- size_t meshWidth;
1774- size_t meshHeight;
1773+ int meshWidth;
1774+ int meshHeight;
17751775 PyObject* coordinates;
17761776 PyArrayObject* coordinates_arr = 0 ;
17771777 PyObject* offsets;
@@ -1793,7 +1793,7 @@ static int _transformation_converter(PyObject* object, void* pointer)
17931793 return NULL ;
17941794 }
17951795
1796- if (!PyArg_ParseTuple (args, " O&IIOOO &OiO" ,
1796+ if (!PyArg_ParseTuple (args, " O&iiOOO &OiO" ,
17971797 _transformation_converter, &master,
17981798 &meshWidth,
17991799 &meshHeight,
@@ -1887,8 +1887,8 @@ static int _transformation_converter(PyObject* object, void* pointer)
18871887 }
18881888
18891889 size_t i = 0 ;
1890- size_t iw = 0 ;
1891- size_t ih = 0 ;
1890+ int iw = 0 ;
1891+ int ih = 0 ;
18921892
18931893 /* Preset graphics context properties if possible */
18941894 CGContextSetShouldAntialias (cr, antialiased);
You can’t perform that action at this time.
0 commit comments