[Bf-blender-cvs] [1ea6394fc84] master: Cleanup: Fix typo error

Antonio Vazquez noreply at git.blender.org
Wed Feb 17 13:40:44 CET 2021


Commit: 1ea6394fc8446cb54ec011d0e210135b8b5a4d33
Author: Antonio Vazquez
Date:   Wed Feb 17 13:30:11 2021 +0100
Branches: master
https://developer.blender.org/rB1ea6394fc8446cb54ec011d0e210135b8b5a4d33

Cleanup: Fix typo error

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

M	source/blender/draw/engines/gpencil/shaders/gpencil_common_lib.glsl

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

diff --git a/source/blender/draw/engines/gpencil/shaders/gpencil_common_lib.glsl b/source/blender/draw/engines/gpencil/shaders/gpencil_common_lib.glsl
index f1705dfcd8c..59f07ccb82b 100644
--- a/source/blender/draw/engines/gpencil/shaders/gpencil_common_lib.glsl
+++ b/source/blender/draw/engines/gpencil/shaders/gpencil_common_lib.glsl
@@ -347,7 +347,7 @@ float stroke_thickness_modulate(float thickness)
 float clamp_small_stroke_thickness(float thickness)
 {
   /* To avoid aliasing artifacts, we clamp the line thickness and
-   * the reduce its opacity in the fragment shader.*/
+   * reduce its opacity in the fragment shader.*/
   float min_thickness = gl_Position.w * 1.3;
   thickness = max(min_thickness, thickness);



More information about the Bf-blender-cvs mailing list