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-08-11 02:44:33 +0300
committerCampbell Barton <campbell@blender.org>2022-08-11 02:51:19 +0300
commit32c8a28720cba0202fcc1ce679e6b54401d8d6b4 (patch)
treed0ac28c4537ffceaab5389fd32e51614d1f1b6ce /source/blender/compositor
parentd68018cf10582dd81df4b61533c3da40e350ed58 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/compositor')
-rw-r--r--source/blender/compositor/operations/COM_MovieClipOperation.cc2
-rw-r--r--source/blender/compositor/realtime_compositor/intern/shader_operation.cc4
2 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/operations/COM_MovieClipOperation.cc b/source/blender/compositor/operations/COM_MovieClipOperation.cc
index d7cf41cf422..b62d972e807 100644
--- a/source/blender/compositor/operations/COM_MovieClipOperation.cc
+++ b/source/blender/compositor/operations/COM_MovieClipOperation.cc
@@ -74,7 +74,7 @@ void MovieClipBaseOperation::execute_pixel_sampled(float output[4],
zero_v4(output);
}
else if (ibuf->rect == nullptr && ibuf->rect_float == nullptr) {
- /* Happens for multilayer exr, i.e. */
+ /* Happens for multi-layer EXR, i.e. */
zero_v4(output);
}
else {
diff --git a/source/blender/compositor/realtime_compositor/intern/shader_operation.cc b/source/blender/compositor/realtime_compositor/intern/shader_operation.cc
index 931d417acad..a097c81a4c5 100644
--- a/source/blender/compositor/realtime_compositor/intern/shader_operation.cc
+++ b/source/blender/compositor/realtime_compositor/intern/shader_operation.cc
@@ -225,8 +225,8 @@ void ShaderOperation::declare_operation_input(DInputSocket input_socket,
/* Add a new GPU attribute representing an input to the GPU material. Instead of using the
* attribute directly, we link it to an appropriate set function and use its output link instead.
- * This is needed because the gputype member of the attribute is only initialized if it is linked
- * to a GPU node. */
+ * This is needed because the `gputype` member of the attribute is only initialized if it is
+ * linked to a GPU node. */
GPUNodeLink *attribute_link;
GPU_link(material,
get_set_function_name(input_descriptor.type),