From 78673e5780dbda8099580cc70e8bcc3f1896e763 Mon Sep 17 00:00:00 2001 From: Antonioya Date: Sat, 13 Oct 2018 18:24:57 +0200 Subject: GP: Add more blur samples to some FX --- source/blender/draw/engines/gpencil/gpencil_shader_fx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/draw/engines/gpencil/gpencil_shader_fx.c') diff --git a/source/blender/draw/engines/gpencil/gpencil_shader_fx.c b/source/blender/draw/engines/gpencil/gpencil_shader_fx.c index 43fcf1be0d2..2165fb251dc 100644 --- a/source/blender/draw/engines/gpencil/gpencil_shader_fx.c +++ b/source/blender/draw/engines/gpencil/gpencil_shader_fx.c @@ -887,7 +887,7 @@ static void draw_gpencil_do_blur( e_data->input_color_tx = e_data->temp_color_tx_b; if ((samples > 0) && ((bx > 0) || (by > 0))) { - for (int x = 0; x < samples; x++) { + for (int x = 0; x < samples * 4; x++) { /* horizontal */ blur[0] = bx; -- cgit v1.2.3