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
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-07-30 14:55:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-07-30 14:56:14 +0300
commit88e774aa34c8ffd90c7bc7e71d3bc290d78b4f2d (patch)
treeb55569d60907eeb3f56e4b4c6a95dfe4218b14d5 /intern
parenta787bcbf5c9713b450b476ab240bd493df10b911 (diff)
Cleanup: workaround for unstable formatting in clang-format
Running multiple times would re-indent differently.
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_ContextWGL.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/ghost/intern/GHOST_ContextWGL.cpp b/intern/ghost/intern/GHOST_ContextWGL.cpp
index 3d1b78f864f..b412e52a5f7 100644
--- a/intern/ghost/intern/GHOST_ContextWGL.cpp
+++ b/intern/ghost/intern/GHOST_ContextWGL.cpp
@@ -480,10 +480,10 @@ int GHOST_ContextWGL::choose_pixel_format(bool stereoVisual, bool needAlpha)
(stereoVisual ? PFD_STEREO : 0) | /* support stereo */
(
#ifdef WIN32_COMPOSITING
- needAlpha ? PFD_SUPPORT_COMPOSITION : /* support composition for transparent
- background */
+ /* Support composition for transparent background. */
+ needAlpha ? PFD_SUPPORT_COMPOSITION :
#endif
- 0)),
+ 0)),
PFD_TYPE_RGBA, /* color type */
(BYTE)(needAlpha ? 32 : 24), /* preferred color depth */
0,