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
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-02-18 05:26:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-02-18 18:19:53 +0300
commit10a54bbd06e3b1843b39b7bc55c24057dcaac41a (patch)
tree03daaae8d98bcb3848f6870ac8e5def3aa5f51e5 /intern
parentbcb9e8e1a706dfb5b1ad20b7e3c019cae44cbbec (diff)
Cleanup: spelling, correct doc-string arguments
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/blender_mesh.cpp2
-rw-r--r--intern/cycles/util/util_simd.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/intern/cycles/blender/blender_mesh.cpp b/intern/cycles/blender/blender_mesh.cpp
index 14bdcd843e9..182aefa82ae 100644
--- a/intern/cycles/blender/blender_mesh.cpp
+++ b/intern/cycles/blender/blender_mesh.cpp
@@ -350,7 +350,7 @@ static void fill_generic_attribute(BL::Mesh &b_mesh,
static void attr_create_generic(Scene *scene, Mesh *mesh, BL::Mesh &b_mesh, bool subdivision)
{
if (subdivision) {
- /* TODO: Handle subdivison correctly. */
+ /* TODO: Handle subdivision correctly. */
return;
}
AttributeSet &attributes = mesh->attributes;
diff --git a/intern/cycles/util/util_simd.h b/intern/cycles/util/util_simd.h
index d327b7298dc..718ec9266b1 100644
--- a/intern/cycles/util/util_simd.h
+++ b/intern/cycles/util/util_simd.h
@@ -290,7 +290,7 @@ __forceinline uint64_t bitscan(uint64_t v)
# endif /* __KERNEL_64_BIT__ */
#elif (defined(__x86_64__) || defined(__i386__)) && defined(__KERNEL_SSE2__)
-/* Instrinsic functions with x86 SSE. */
+/* Intrinsic functions with x86 SSE. */
__forceinline uint32_t __bsf(const uint32_t v)
{