Cleanup: workaround for unstable formatting in clang-format

Running multiple times would re-indent differently.
This commit is contained in:
Campbell Barton 2021-07-30 21:55:23 +10:00
parent a787bcbf5c
commit 88e774aa34
1 changed files with 3 additions and 3 deletions

View File

@ -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,