WIP: Brush assets project #106303

Draft
Julian Eisel wants to merge 358 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 3 deletions
Showing only changes of commit 93a9dde143 - Show all commits

View File

@ -229,9 +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, [&](Drawing *drawing) {
modify_curves(md, ctx, drawing->strokes_for_write());
});
threading::parallel_for_each(
drawings, [&](Drawing *drawing) { modify_curves(md, ctx, drawing->strokes_for_write()); });
}
static void panel_draw(const bContext *C, Panel *panel)