summaryrefslogtreecommitdiffstats
path: root/src/core/ozone/gl_share_context_qt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/ozone/gl_share_context_qt.cpp')
-rw-r--r--src/core/ozone/gl_share_context_qt.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/ozone/gl_share_context_qt.cpp b/src/core/ozone/gl_share_context_qt.cpp
index 669652057..c2cfecb8b 100644
--- a/src/core/ozone/gl_share_context_qt.cpp
+++ b/src/core/ozone/gl_share_context_qt.cpp
@@ -57,21 +57,21 @@ QtShareGLContext::QtShareGLContext(QOpenGLContext *qtContext)
#if QT_CONFIG(opengl)
QOpenGLContext *context = QOpenGLContext::globalShareContext();
#if defined(Q_OS_MACOS)
- auto *ctx = context->platformInterface<QPlatformInterface::QCocoaGLContext>();
+ auto *ctx = context->nativeInterface<QNativeInterface::QCocoaGLContext>();
if (ctx)
m_handle = cglContext(ctx->nativeContext());
#endif
#if defined(Q_OS_WIN)
- auto *ctx = context->platformInterface<QPlatformInterface::QWGLContext>();
+ auto *ctx = context->nativeInterface<QNativeInterface::QWGLContext>();
#endif
#if defined(Q_OS_LINUX)
- auto *ctx = context->platformInterface<QPlatformInterface::QGLXContext>();
+ auto *ctx = context->nativeInterface<QNativeInterface::QGLXContext>();
#endif
if (ctx && !m_handle)
m_handle = (void *)ctx->nativeContext();
#if QT_CONFIG(egl)
if (!m_handle) {
- auto *ctx = context->platformInterface<QPlatformInterface::QEGLContext>();
+ auto *ctx = context->nativeInterface<QNativeInterface::QEGLContext>();
if (ctx)
m_handle = (void *)ctx->nativeContext();
}