From 3fc5826f7c6c7606a6bc7e01970321c4e5b41751 Mon Sep 17 00:00:00 2001 From: Antonio Vazquez Date: Sun, 21 Jun 2020 15:51:50 +0200 Subject: GPencil: Fix unreported missing material onion filter This feature was removed by error during the refactor done in draw engine. Differential Revision: https://developer.blender.org/D8082 --- source/blender/draw/engines/gpencil/gpencil_engine.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source/blender/draw/engines/gpencil/gpencil_engine.c') diff --git a/source/blender/draw/engines/gpencil/gpencil_engine.c b/source/blender/draw/engines/gpencil/gpencil_engine.c index 16416596784..f658356c1b4 100644 --- a/source/blender/draw/engines/gpencil/gpencil_engine.c +++ b/source/blender/draw/engines/gpencil/gpencil_engine.c @@ -493,8 +493,10 @@ static void gpencil_stroke_cache_populate(bGPDlayer *gpl, (!iter->pd->simplify_fill) && ((gps->flag & GP_STROKE_NOFILL) == 0); bool only_lines = gpl && gpf && gpl->actframe != gpf && iter->pd->use_multiedit_lines_only; + bool hide_onion = gpl && gpf && gpf->runtime.onion_id != 0 && + ((gp_style->flag & GP_MATERIAL_HIDE_ONIONSKIN) != 0); - if (hide_material || (!show_stroke && !show_fill) || only_lines) { + if (hide_material || (!show_stroke && !show_fill) || only_lines || hide_onion) { return; } -- cgit v1.2.3