[Bf-blender-cvs] [e6d82c98730] greasepencil-object: Cleanup comments

Antonio Vazquez noreply at git.blender.org
Mon Aug 14 16:59:57 CEST 2017


Commit: e6d82c9873022756c1246802fac983b7c6a21dde
Author: Antonio Vazquez
Date:   Mon Aug 14 16:33:21 2017 +0200
Branches: greasepencil-object
https://developer.blender.org/rBe6d82c9873022756c1246802fac983b7c6a21dde

Cleanup comments

===================================================================

M	source/blender/draw/engines/gpencil/gpencil_vfx.c

===================================================================

diff --git a/source/blender/draw/engines/gpencil/gpencil_vfx.c b/source/blender/draw/engines/gpencil/gpencil_vfx.c
index 95a2a34e72c..74e5fb5c632 100644
--- a/source/blender/draw/engines/gpencil/gpencil_vfx.c
+++ b/source/blender/draw/engines/gpencil/gpencil_vfx.c
@@ -163,7 +163,6 @@ static void DRW_gpencil_vfx_blur(ModifierData *md, int ob_idx, GPENCIL_e_data *e
 
 	struct Gwn_Batch *vfxquad = DRW_cache_fullscreen_quad_get();
 	/* === Pass 1 === */
-	/* horizontal blur */
 	vfx_shgrp = DRW_shgroup_create(e_data->gpencil_vfx_blur_sh, psl->vfx_blur_pass_1);
 	DRW_shgroup_call_add(vfx_shgrp, vfxquad, NULL);
 	DRW_shgroup_uniform_buffer(vfx_shgrp, "strokeColor", &e_data->vfx_fbcolor_color_tx_a);
@@ -180,7 +179,6 @@ static void DRW_gpencil_vfx_blur(ModifierData *md, int ob_idx, GPENCIL_e_data *e
 	cache->end_vfx_blur_sh_1 = vfx_shgrp;
 
 	/* === Pass 2 === */
-	/* horizontal blur */
 	vfx_shgrp = DRW_shgroup_create(e_data->gpencil_vfx_blur_sh, psl->vfx_blur_pass_2);
 	DRW_shgroup_call_add(vfx_shgrp, vfxquad, NULL);
 	DRW_shgroup_uniform_buffer(vfx_shgrp, "strokeColor", &e_data->vfx_fbcolor_color_tx_b);
@@ -197,7 +195,6 @@ static void DRW_gpencil_vfx_blur(ModifierData *md, int ob_idx, GPENCIL_e_data *e
 	cache->end_vfx_blur_sh_2 = vfx_shgrp;
 
 	/* === Pass 3 === */
-	/* horizontal blur */
 	vfx_shgrp = DRW_shgroup_create(e_data->gpencil_vfx_blur_sh, psl->vfx_blur_pass_3);
 	DRW_shgroup_call_add(vfx_shgrp, vfxquad, NULL);
 	DRW_shgroup_uniform_buffer(vfx_shgrp, "strokeColor", &e_data->vfx_fbcolor_color_tx_a);
@@ -214,7 +211,6 @@ static void DRW_gpencil_vfx_blur(ModifierData *md, int ob_idx, GPENCIL_e_data *e
 	cache->end_vfx_blur_sh_3 = vfx_shgrp;
 
 	/* === Pass 4 === */
-	/* horizontal blur */
 	vfx_shgrp = DRW_shgroup_create(e_data->gpencil_vfx_blur_sh, psl->vfx_blur_pass_4);
 	DRW_shgroup_call_add(vfx_shgrp, vfxquad, NULL);
 	DRW_shgroup_uniform_buffer(vfx_shgrp, "strokeColor", &e_data->vfx_fbcolor_color_tx_b);




More information about the Bf-blender-cvs mailing list