From a4a9d14ba71100259f19bd62e8c2f27cd8b7862f Mon Sep 17 00:00:00 2001 From: luzpaz Date: Fri, 5 Feb 2021 19:07:03 -0800 Subject: UI: Fix Typos in Comments and Docs Approximately 91 spelling corrections, almost all in comments. Differential Revision: https://developer.blender.org/D10288 Reviewed by Harley Acheson --- source/blender/draw/engines/gpencil/shaders/gpencil_common_lib.glsl | 2 +- source/blender/draw/engines/gpencil/shaders/gpencil_vfx_frag.glsl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/draw/engines/gpencil') 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 189ed91cbb4..3065d553dce 100644 --- a/source/blender/draw/engines/gpencil/shaders/gpencil_common_lib.glsl +++ b/source/blender/draw/engines/gpencil/shaders/gpencil_common_lib.glsl @@ -393,7 +393,7 @@ void stroke_vertex() is_squares = false; } - /* Enpoints, we discard the vertices. */ + /* Endpoints, we discard the vertices. */ if (ma1.x == -1 || (!is_dot && ma2.x == -1)) { discard_vert(); return; diff --git a/source/blender/draw/engines/gpencil/shaders/gpencil_vfx_frag.glsl b/source/blender/draw/engines/gpencil/shaders/gpencil_vfx_frag.glsl index 503248558ad..aedc8668387 100644 --- a/source/blender/draw/engines/gpencil/shaders/gpencil_vfx_frag.glsl +++ b/source/blender/draw/engines/gpencil/shaders/gpencil_vfx_frag.glsl @@ -274,7 +274,7 @@ uniform bool isFirstPass; vec2 compute_uvs(float x) { vec2 uv = uvcoordsvar.xy; - /* Tranform UV (loc, rot, scale) */ + /* Transform UV (loc, rot, scale) */ uv = uv.x * uvRotX + uv.y * uvRotY + uvOffset; uv += blurDir * x; /* Wave deform. */ -- cgit v1.2.3