Commit ba94e26b authored by Morten Johan Sørvig's avatar Morten Johan Sørvig
Browse files

Cocoa: Clean up context creation.


Make the fallback to creating an unshared context
actually work by using correct [initWithFormat: ]
code.

Warn and return early on context creation failure
instead of continuing and crashing.

Change-Id: Ic88f419eaa717436aefc9c1da36c47e0ccb3e956
Task-number: QTBUG-47825
Reviewed-by: default avatarLaszlo Agocs <laszlo.agocs@theqtcompany.com>
Showing with 11 additions and 5 deletions
...@@ -146,19 +146,25 @@ QCocoaGLContext::QCocoaGLContext(const QSurfaceFormat &format, QPlatformOpenGLCo ...@@ -146,19 +146,25 @@ QCocoaGLContext::QCocoaGLContext(const QSurfaceFormat &format, QPlatformOpenGLCo
QMacAutoReleasePool pool; // For the SG Canvas render thread QMacAutoReleasePool pool; // For the SG Canvas render thread
// create native context for the requested pixel format and share
NSOpenGLPixelFormat *pixelFormat = static_cast <NSOpenGLPixelFormat *>(qcgl_createNSOpenGLPixelFormat(m_format)); NSOpenGLPixelFormat *pixelFormat = static_cast <NSOpenGLPixelFormat *>(qcgl_createNSOpenGLPixelFormat(m_format));
m_shareContext = share ? static_cast<QCocoaGLContext *>(share)->nsOpenGLContext() : nil; m_shareContext = share ? static_cast<QCocoaGLContext *>(share)->nsOpenGLContext() : nil;
m_context = [[NSOpenGLContext alloc] initWithFormat:pixelFormat shareContext:m_shareContext];
m_context = [NSOpenGLContext alloc]; // retry without sharing on context creation failure.
[m_context initWithFormat:pixelFormat shareContext:m_shareContext];
if (!m_context && m_shareContext) { if (!m_context && m_shareContext) {
// try without shared context
m_shareContext = nil; m_shareContext = nil;
[m_context initWithFormat:pixelFormat shareContext:nil]; m_context = [[NSOpenGLContext alloc] initWithFormat:pixelFormat shareContext:nil];
if (m_context)
qWarning("QCocoaGLContext: Falling back to unshared context.");
} }
// give up if we still did not get a native context
[pixelFormat release]; [pixelFormat release];
if (!m_context) {
qWarning("QCocoaGLContext: Failed to create context.");
return;
}
const GLint interval = format.swapInterval() >= 0 ? format.swapInterval() : 1; const GLint interval = format.swapInterval() >= 0 ? format.swapInterval() : 1;
[m_context setValues:&interval forParameter:NSOpenGLCPSwapInterval]; [m_context setValues:&interval forParameter:NSOpenGLCPSwapInterval];
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment