From 6ff79478a44fce12ca18832a56db4a370a9ff417 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tor=20Arne=20Vestb=C3=B8?= Date: Mon, 8 Jun 2020 20:00:36 +0200 Subject: Introduce platform API abstraction for QOpenGLContext The API is available by including qopenglcontext.h as usual, but scoped in the QPlatformInterface namespace. The namespace exposes platform specific type-safe interfaces that provide: a) Factory functions for adopting native contexts, e.g. QCocoaGLContext::fromNative(nsContext, shareContext); b) Access to underlying native handles, e.g. openGLContext->platformInterface->nativeContext() c) Platform specific functionality, e.g. static QWGLContext::openGLModuleHandle() openGLContext->platformInterface->doSomething(); The platform interfaces live close to the classes they extend, removing the need for complex indirection and plumbing, and avoids kitchen-sink modules and APIs such as the extras modules, QPlatformFunctions, or QPlatformNativeInterface. In the case of QOpenGLContext these platform APIs are backed by the platform plugin, so dynamic_cast is used to ensure the platform plugin supports the requested interface, but this is and implementation detail. The interface APIs are agnostic to where the implementation lives, while still being available to the user as part of the APIs they extend/augment. The documentation will be restored when the dust settles. Task-number: QTBUG-80233 Change-Id: Iac612403383991c4b24064332542a6e4bcbb3293 Reviewed-by: Friedemann Kleint --- tests/auto/gui/qopengl/tst_qopengl.cpp | 38 ++++++++++++---------------------- 1 file changed, 13 insertions(+), 25 deletions(-) (limited to 'tests/auto/gui') diff --git a/tests/auto/gui/qopengl/tst_qopengl.cpp b/tests/auto/gui/qopengl/tst_qopengl.cpp index c093885951..b43defd2f3 100644 --- a/tests/auto/gui/qopengl/tst_qopengl.cpp +++ b/tests/auto/gui/qopengl/tst_qopengl.cpp @@ -52,15 +52,6 @@ #include -#ifdef USE_GLX -// Must be included last due to the X11 types -#include -#endif - -#if defined(Q_OS_WIN32) && !QT_CONFIG(opengles2) -#include -#endif - Q_DECLARE_METATYPE(QImage::Format) class tst_QOpenGL : public QObject @@ -1480,6 +1471,8 @@ void tst_QOpenGL::defaultSurfaceFormat() QCOMPARE(context->format(), fmt); } +using namespace QPlatformInterface; + #ifdef USE_GLX void tst_QOpenGL::glxContextWrap() { @@ -1496,17 +1489,14 @@ void tst_QOpenGL::glxContextWrap() QOpenGLContext *ctx0 = new QOpenGLContext; ctx0->setFormat(window->format()); QVERIFY(ctx0->create()); - QVariant v = ctx0->nativeHandle(); - QVERIFY(!v.isNull()); - QVERIFY(v.canConvert()); - GLXContext context = v.value().context(); + auto *glxContextIf = ctx0->platformInterface(); + QVERIFY(glxContextIf); + GLXContext context = glxContextIf->nativeContext(); QVERIFY(context); // Then create another QOpenGLContext wrapping it. - QOpenGLContext *ctx = new QOpenGLContext; - ctx->setNativeHandle(QVariant::fromValue(QGLXNativeContext(context))); - QVERIFY(ctx->create()); - QCOMPARE(ctx->nativeHandle().value().context(), context); + QOpenGLContext *ctx = QGLXContext::fromNative(context); + QVERIFY(ctx); QVERIFY(nativeIf->nativeResourceForContext(QByteArrayLiteral("glxcontext"), ctx) == (void *) context); QVERIFY(ctx->makeCurrent(window)); @@ -1533,11 +1523,9 @@ void tst_QOpenGL::wglContextWrap() window->show(); QVERIFY(QTest::qWaitForWindowExposed(window.data())); - QVariant v = ctx->nativeHandle(); - QVERIFY(!v.isNull()); - QVERIFY(v.canConvert()); - QWGLNativeContext nativeContext = v.value(); - QVERIFY(nativeContext.context()); + auto *wglContext = ctx->platformInterface(); + QVERIFY(wglContext); + QVERIFY(wglContext->nativeContext()); // Now do a makeCurrent() do make sure the pixel format on the native // window (the HWND we are going to retrieve below) is set. @@ -1547,9 +1535,9 @@ void tst_QOpenGL::wglContextWrap() HWND wnd = (HWND) qGuiApp->platformNativeInterface()->nativeResourceForWindow(QByteArrayLiteral("handle"), window.data()); QVERIFY(wnd); - QScopedPointer adopted(new QOpenGLContext); - adopted->setNativeHandle(QVariant::fromValue(QWGLNativeContext(nativeContext.context(), wnd))); - QVERIFY(adopted->create()); + QScopedPointer adopted(QWGLContext::fromNative(wglContext->nativeContext(), wnd)); + QVERIFY(!adopted.isNull()); + QVERIFY(adopted->isValid()); // This tests two things: that a regular, non-adopted QOpenGLContext is // able to return a QSurfaceFormat containing the real values after -- cgit v1.2.3