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 <campbell@blender.org>2022-10-06 04:12:09 +0300
committerCampbell Barton <campbell@blender.org>2022-10-06 04:13:00 +0300
commit87d737cd792183d409760ab1f0a778abb9f1daa3 (patch)
tree14e4a18e75eb3adc20e1b5579ab4fa27cadeb839 /source/blender/draw/engines/overlay/shaders/overlay_motion_path_line_vert_no_geom.glsl
parent51bd26d0faad306183c58bff0865b72cf99fbe90 (diff)
Cleanup: spelling in code comments
Diffstat (limited to 'source/blender/draw/engines/overlay/shaders/overlay_motion_path_line_vert_no_geom.glsl')
-rw-r--r--source/blender/draw/engines/overlay/shaders/overlay_motion_path_line_vert_no_geom.glsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/draw/engines/overlay/shaders/overlay_motion_path_line_vert_no_geom.glsl b/source/blender/draw/engines/overlay/shaders/overlay_motion_path_line_vert_no_geom.glsl
index c83e7f095a7..3272a9fa2ce 100644
--- a/source/blender/draw/engines/overlay/shaders/overlay_motion_path_line_vert_no_geom.glsl
+++ b/source/blender/draw/engines/overlay/shaders/overlay_motion_path_line_vert_no_geom.glsl
@@ -104,7 +104,7 @@ void main()
* Note: Primitive is LineStrip for this shader. */
int base_vertex_id = quad_id;
- /* Fetch attributes for self and neighbouring vertex. */
+ /* Fetch attributes for self and neighboring vertex. */
vec3 in_pos0 = vertex_fetch_attribute(base_vertex_id, pos, vec3);
vec3 in_pos1 = vertex_fetch_attribute(base_vertex_id + 1, pos, vec3);