Mask / Win64 compile fix: "Index variable in OpenMP 'for' statement must have signed integral type"

This commit is contained in:
Daniel Genrich 2012-07-31 19:37:33 +00:00
parent 72a3fb15d7
commit 32bd936f18

@ -1301,7 +1301,7 @@ void BKE_maskrasterize_buffer(MaskRasterHandle *mr_handle,
const unsigned int width, const unsigned int height,
float *buffer)
{
unsigned int y;
int y;
#pragma omp parallel for private(y)
for (y = 0; y < height; y++) {