Fix #104124: Grease Pencil fills cover the lines below when drawing #105797

Merged
Clément Foucault merged 1 commits from fclem/blender:tmp-fix-104124 into blender-v3.5-release 2023-03-15 15:59:33 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -536,7 +536,7 @@ static void gpencil_stroke_cache_populate(bGPDlayer *gpl,
gpencil_drawcall_add(iter, geom, vfirst, vcount);
}
iter->stroke_index_last = gps->runtime.stroke_start + gps->totpoints + 1;
iter->stroke_index_last = gps->runtime.vertex_start + gps->totpoints + 1;
}
static void gpencil_sbuffer_cache_populate_fast(GPENCIL_Data *vedata, gpIterPopulateData *iter)