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-23 04:15:50 +0300
committerCampbell Barton <campbell@blender.org>2022-03-23 04:15:50 +0300
commit4822153b85551ffce614c174c9a3bff0f8b8a975 (patch)
tree6257cf39620781dc0f7ab9c029518bfe2895dbf3 /source/blender/gpu/opengl
parent6bb28a1a524060eca8d20dff8f72e1d4bbc7d938 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/gpu/opengl')
-rw-r--r--source/blender/gpu/opengl/gl_storage_buffer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/opengl/gl_storage_buffer.cc b/source/blender/gpu/opengl/gl_storage_buffer.cc
index a461d834790..109bb65fcb7 100644
--- a/source/blender/gpu/opengl/gl_storage_buffer.cc
+++ b/source/blender/gpu/opengl/gl_storage_buffer.cc
@@ -27,7 +27,7 @@ GLStorageBuf::GLStorageBuf(size_t size, GPUUsageType usage, const char *name)
: StorageBuf(size, name)
{
usage_ = usage;
- /* Do not create ubo GL buffer here to allow allocation from any thread. */
+ /* Do not create UBO GL buffer here to allow allocation from any thread. */
BLI_assert(size <= GLContext::max_ssbo_size);
}