summaryrefslogtreecommitdiffstats
path: root/tests/manual/qopenglcontext/qopenglcontextwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/qopenglcontext/qopenglcontextwindow.cpp')
-rw-r--r--tests/manual/qopenglcontext/qopenglcontextwindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/manual/qopenglcontext/qopenglcontextwindow.cpp b/tests/manual/qopenglcontext/qopenglcontextwindow.cpp
index 4a369f8eda..07147a4488 100644
--- a/tests/manual/qopenglcontext/qopenglcontextwindow.cpp
+++ b/tests/manual/qopenglcontext/qopenglcontextwindow.cpp
@@ -97,8 +97,8 @@ void QOpenGLContextWindow::createForeignContext()
// underlying native context. This way the texture, that belongs to the context
// created here, will be accessible from m_context too.
- using namespace QPlatformInterface;
- auto *eglContext = m_context->platformInterface<QEGLContext>();
+ using namespace QNativeInterface;
+ auto *eglContext = m_context->nativeInterface<QEGLContext>();
if (!eglContext)
qFatal("Not running with EGL backend");
@@ -132,7 +132,7 @@ void QOpenGLContextWindow::createForeignContext()
// Wrap ctx into a QOpenGLContext.
QOpenGLContext *ctxWrap = QEGLContext::fromNative(ctx, dpy, m_context);
- Q_ASSERT(ctxWrap->platformInterface<QEGLContext>()->nativeContext() == ctx);
+ Q_ASSERT(ctxWrap->nativeInterface<QEGLContext>()->nativeContext() == ctx);
QOffscreenSurface surface;
surface.setFormat(fmt);