diff --git a/source/blender/blenkernel/intern/subsurf_ccg.c b/source/blender/blenkernel/intern/subsurf_ccg.c index a5f7d568978..61b759e6d2e 100644 --- a/source/blender/blenkernel/intern/subsurf_ccg.c +++ b/source/blender/blenkernel/intern/subsurf_ccg.c @@ -2082,13 +2082,13 @@ static void ccgDM_buffer_copy_triangles( for (x = 0; x < gridFaces; x++) { start = gpumat->start + fc[mati].i_tri_visible; - varray[start++] = totloops; - varray[start++] = totloops + 2; varray[start++] = totloops + 3; - - varray[start++] = totloops; - varray[start++] = totloops + 1; varray[start++] = totloops + 2; + varray[start++] = totloops; + + varray[start++] = totloops + 2; + varray[start++] = totloops + 1; + varray[start++] = totloops; fc[mati].i_tri_visible += 6;