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 <ideasman42@gmail.com>2021-01-04 04:00:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-04 09:38:11 +0300
commit54f89e870425b20af14e2be03b777836b88a29af (patch)
treeda5eb59c6b15979c4e62dfdafbcb38b27463d2a7 /source/blender/gpu/opengl/gl_state.cc
parent9b10b3930bd7784794e87255de390ad6e6876a4b (diff)
Cleanup: docy comments beginning with '/**' don't end with '**/'
Diffstat (limited to 'source/blender/gpu/opengl/gl_state.cc')
-rw-r--r--source/blender/gpu/opengl/gl_state.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/opengl/gl_state.cc b/source/blender/gpu/opengl/gl_state.cc
index c5b5dd3efd2..b837eae4871 100644
--- a/source/blender/gpu/opengl/gl_state.cc
+++ b/source/blender/gpu/opengl/gl_state.cc
@@ -358,7 +358,7 @@ void GLStateManager::set_blend(const eGPUBlend value)
* DST is frame-buffer color.
* final.rgb = SRC.rgb * src_rgb + DST.rgb * dst_rgb;
* final.a = SRC.a * src_alpha + DST.a * dst_alpha;
- **/
+ */
GLenum src_rgb, src_alpha, dst_rgb, dst_alpha;
switch (value) {
default: