Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonioya <blendergit@gmail.com>2018-10-13 19:24:57 +0300
committerAntonioya <blendergit@gmail.com>2018-10-13 19:24:57 +0300
commit78673e5780dbda8099580cc70e8bcc3f1896e763 (patch)
tree2bf83d374d9d8295319e2049b9dee0ad57f17012 /source/blender/draw/engines/gpencil/gpencil_shader_fx.c
parent7b9049f278095a1a08a6ec1ddb9ed118d1dae17e (diff)
GP: Add more blur samples to some FX
Diffstat (limited to 'source/blender/draw/engines/gpencil/gpencil_shader_fx.c')
-rw-r--r--source/blender/draw/engines/gpencil/gpencil_shader_fx.c2
1 files changed, 1 insertions, 1 deletions
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;