[Bf-blender-cvs] [cab2ca7a246] blender-v3.3-release: Fix macOS build error due to merge issue

Brecht Van Lommel noreply at git.blender.org
Wed Sep 21 16:38:41 CEST 2022


Commit: cab2ca7a24602b725a7cc730c54a961b8e240daa
Author: Brecht Van Lommel
Date:   Wed Sep 21 16:21:24 2022 +0200
Branches: blender-v3.3-release
https://developer.blender.org/rBcab2ca7a24602b725a7cc730c54a961b8e240daa

Fix macOS build error due to merge issue

===================================================================

M	intern/ghost/intern/GHOST_ContextCGL.mm

===================================================================

diff --git a/intern/ghost/intern/GHOST_ContextCGL.mm b/intern/ghost/intern/GHOST_ContextCGL.mm
index 0076ddcb16c..763bb6b86fa 100644
--- a/intern/ghost/intern/GHOST_ContextCGL.mm
+++ b/intern/ghost/intern/GHOST_ContextCGL.mm
@@ -269,7 +269,8 @@ GHOST_TSuccess GHOST_ContextCGL::initializeDrawingContext()
 
       attribs.clear();
       attribs.reserve(40);
-      makeAttribList(attribs, m_stereoVisual, needAlpha, softwareGL, increasedSamplerLimit);
+      makeAttribList(
+          attribs, m_coreProfile, m_stereoVisual, needAlpha, softwareGL, increasedSamplerLimit);
 
       pixelFormat = [[NSOpenGLPixelFormat alloc] initWithAttributes:&attribs[0]];
       if (pixelFormat == nil) {



More information about the Bf-blender-cvs mailing list