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:
authorAntonio Vazquez <blendergit@gmail.com>2019-11-25 18:12:22 +0300
committerAntonio Vazquez <blendergit@gmail.com>2019-11-25 18:12:36 +0300
commit78071d0cdfe53bf9dd7baa1a7204b1e148b7574b (patch)
tree319184726bbd183c1083a61d11540fecf0f744cb /source/blender
parente0cada951982093453a91b80342ce20c4f421fc8 (diff)
Fix T71892: Typo error - Distorsion to Distortion
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/draw/engines/gpencil/gpencil_shader_fx.c2
-rw-r--r--source/blender/shader_fx/intern/FX_shader_wave.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/draw/engines/gpencil/gpencil_shader_fx.c b/source/blender/draw/engines/gpencil/gpencil_shader_fx.c
index 0f4043ce278..f6a62e0d472 100644
--- a/source/blender/draw/engines/gpencil/gpencil_shader_fx.c
+++ b/source/blender/draw/engines/gpencil/gpencil_shader_fx.c
@@ -603,7 +603,7 @@ static void gpencil_fx_swirl(ShaderFxData *fx,
fxd->runtime.fx_sh = fx_shgrp;
}
-/* Wave Distorsion FX */
+/* Wave Distortion FX */
static void gpencil_fx_wave(ShaderFxData *fx, GPENCIL_e_data *e_data, GPENCIL_Data *vedata)
{
if (fx == NULL) {
diff --git a/source/blender/shader_fx/intern/FX_shader_wave.c b/source/blender/shader_fx/intern/FX_shader_wave.c
index 8abe70ec22e..334024bbd3f 100644
--- a/source/blender/shader_fx/intern/FX_shader_wave.c
+++ b/source/blender/shader_fx/intern/FX_shader_wave.c
@@ -46,7 +46,7 @@ static void copyData(const ShaderFxData *md, ShaderFxData *target)
}
ShaderFxTypeInfo shaderfx_Type_Wave = {
- /* name */ "Wave Distorsion",
+ /* name */ "Wave Distortion",
/* structName */ "WaveShaderFxData",
/* structSize */ sizeof(WaveShaderFxData),
/* type */ eShaderFxType_GpencilType,