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:
authorCampbell Barton <ideasman42@gmail.com>2021-06-15 03:59:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-15 03:59:57 +0300
commit5dc0fd08a70b123e5d17057e1cbc1462bef0d8d8 (patch)
tree996d344b61c587ccf535de1a21456021d5c9a1fc /source/blender/draw/engines
parent2053e1f533b3772f38a19426f22d5c5e10c6bafb (diff)
Cleanup: correct incomplete comment
Diffstat (limited to 'source/blender/draw/engines')
-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 21d55357a2a..315133186da 100644
--- a/source/blender/draw/engines/gpencil/gpencil_shader_fx.c
+++ b/source/blender/draw/engines/gpencil/gpencil_shader_fx.c
@@ -397,7 +397,7 @@ static void gpencil_vfx_shadow(ShadowShaderFxData *fx, Object *ob, gpIterVfxData
unit_m4(uv_mat);
zero_v2(wave_ofs);
- /* We reset the uv_mat so we need to account for the rotation in the */
+ /* Reset the `uv_mat` to account for rotation in the Y-axis (Shadow-V parameter). */
copy_v2_fl2(tmp, 0.0f, blur_size[1]);
rotate_v2_v2fl(blur_dir, tmp, -fx->rotation);
mul_v2_v2(blur_dir, vp_size_inv);