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 13:13:06 +0300
committerBastien Montagne <bastien@blender.org>2022-02-07 13:13:06 +0300
commitd9b1bd01f77fdc42173dd3af9757bd848dcbaf0d (patch)
treed40aacffd3c334ab4f436b8d862630858c3a3d9e /source/blender/gpu
parent1c5f2e49b7bfa444964d850fbf3d5b6aa620af6a (diff)
parent3cd686cae8e9a767fb6d6a4e4206e4ad24725bb8 (diff)
Merge branch 'blender-v3.1-release'
Diffstat (limited to 'source/blender/gpu')
-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 48732918754..9da35a2bc97 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";
}
}