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-03-16 07:19:31 +0300
committerCampbell Barton <campbell@blender.org>2022-03-16 07:30:22 +0300
commit8cfdad99a0edbc70beb266518458199b757497b5 (patch)
treea0da9dfb71d7a234c0ae16e99e5ea325807697c2 /source/blender/compositor
parent24ada9c96027971e50e9d103c746d674024b6892 (diff)
Cleanup: incorrect comments, use C comments
Diffstat (limited to 'source/blender/compositor')
-rw-r--r--source/blender/compositor/operations/COM_CompositorOperation.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/compositor/operations/COM_CompositorOperation.cc b/source/blender/compositor/operations/COM_CompositorOperation.cc
index 23520364bf0..e8b61ff229e 100644
--- a/source/blender/compositor/operations/COM_CompositorOperation.cc
+++ b/source/blender/compositor/operations/COM_CompositorOperation.cc
@@ -114,7 +114,7 @@ void CompositorOperation::deinit_execution()
void CompositorOperation::execute_region(rcti *rect, unsigned int /*tile_number*/)
{
- float color[8]; // 7 is enough
+ float color[8]; /* 7 is enough. */
float *buffer = output_buffer_;
float *zbuffer = depth_buffer_;