From 88e774aa34c8ffd90c7bc7e71d3bc290d78b4f2d Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 30 Jul 2021 21:55:23 +1000 Subject: Cleanup: workaround for unstable formatting in clang-format Running multiple times would re-indent differently. --- intern/ghost/intern/GHOST_ContextWGL.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'intern') 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, -- cgit v1.2.3