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>2016-04-29 21:04:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-04-29 21:10:34 +0300
commitac163447f86f95ec6136991d7df3aaaefdd55fae (patch)
tree883c34732ccd29fd9ade99aa98bca6d5fb43d966 /source/blender/gpu
parent461604c0d5ea58bb44a2fac0a3637f5b959aac26 (diff)
Cleanup: warnings. spelling
Diffstat (limited to 'source/blender/gpu')
-rw-r--r--source/blender/gpu/intern/gpu_extensions.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/gpu/intern/gpu_extensions.c b/source/blender/gpu/intern/gpu_extensions.c
index 7d433a78411..3c96b628cd6 100644
--- a/source/blender/gpu/intern/gpu_extensions.c
+++ b/source/blender/gpu/intern/gpu_extensions.c
@@ -259,8 +259,8 @@ bool GPU_legacy_support(void)
if (G.debug & G_DEBUG_GPU) {
printf("GL_CONTEXT_PROFILE_MASK = %#x (%s profile)\n", (unsigned int)profile,
- profile & GL_CONTEXT_COMPATIBILITY_PROFILE_BIT ? "compatibility" :
- profile & GL_CONTEXT_CORE_PROFILE_BIT ? "core" : "unknown");
+ (profile & GL_CONTEXT_COMPATIBILITY_PROFILE_BIT) ? "compatibility" :
+ (profile & GL_CONTEXT_CORE_PROFILE_BIT) ? "core" : "unknown");
}
if (profile == 0) {