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:
authorBastien Montagne <bastien@blender.org>2022-02-07 12:59:24 +0300
committerBastien Montagne <bastien@blender.org>2022-02-07 13:12:37 +0300
commit3cd686cae8e9a767fb6d6a4e4206e4ad24725bb8 (patch)
tree1d138309886a3cd945a1c5b63b64b7f8f32429e0 /source/blender/gpu/opengl
parent1d59a7aa777909a75420970d50f27be48c96e150 (diff)
Fix UI messages (typos etc.).
Diffstat (limited to 'source/blender/gpu/opengl')
-rw-r--r--source/blender/gpu/opengl/gl_shader.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/gpu/opengl/gl_shader.cc b/source/blender/gpu/opengl/gl_shader.cc
index f0a4b5b7f58..27205cfbc0b 100644
--- a/source/blender/gpu/opengl/gl_shader.cc
+++ b/source/blender/gpu/opengl/gl_shader.cc
@@ -85,7 +85,7 @@ static const char *to_string(const Interpolation &interp)
case Interpolation::NO_PERSPECTIVE:
return "noperspective";
default:
- return "unkown";
+ return "unknown";
}
}
@@ -123,7 +123,7 @@ static const char *to_string(const Type &type)
case Type::BOOL:
return "bool";
default:
- return "unkown";
+ return "unknown";
}
}