WIP: Brush assets project #106303

Draft
Julian Eisel wants to merge 352 commits from brush-assets-project into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 2 additions and 2 deletions
Showing only changes of commit f49b856bb0 - Show all commits

View File

@ -229,8 +229,8 @@ static void modify_geometry_set(ModifierData *md,
*grease_pencil, omd->influence, mask_memory);
Vector<Drawing *> drawings = modifier::greasepencil::get_drawings_for_write(
*grease_pencil, layer_mask, frame);
threading::parallel_for_each(drawings.index_range(), [&](int64_t i) {
modify_curves(md, ctx, drawings[i]->strokes_for_write());
threading::parallel_for_each(drawings, [&](Drawing *drawing) {
modify_curves(md, ctx, drawing->strokes_for_write());
});
}