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-01-26 08:06:22 +0300
committerCampbell Barton <campbell@blender.org>2022-01-26 08:06:22 +0300
commitb06fff4737e5a18bb999f6633c7df67dda63ace7 (patch)
treeb2efcf91d1d2e2c2119b9176393469f56006548f /source/blender/gpu/intern/gpu_shader_create_info.hh
parent94d2a611ec0cb66d24828aa8d21e5a1173cc8c13 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/gpu/intern/gpu_shader_create_info.hh')
-rw-r--r--source/blender/gpu/intern/gpu_shader_create_info.hh5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_shader_create_info.hh b/source/blender/gpu/intern/gpu_shader_create_info.hh
index 6fe6d7676fb..f8149bc7be0 100644
--- a/source/blender/gpu/intern/gpu_shader_create_info.hh
+++ b/source/blender/gpu/intern/gpu_shader_create_info.hh
@@ -63,7 +63,10 @@ enum class Type {
};
enum class BuiltinBits {
- /** Allow getting barycentic coordinates inside the fragment shader. NOTE: emulated on OpenGL. */
+ /**
+ * Allow getting barycentric coordinates inside the fragment shader.
+ * \note Emulated on OpenGL.
+ */
BARYCENTRIC_COORD = (1 << 0),
FRAG_COORD = (1 << 2),
FRONT_FACING = (1 << 4),