qt5base-lts/tests/manual/qopenglcontext
Tor Arne Vestbø 6ff79478a4 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<QCocoaGLContext>->nativeContext()

 c) Platform specific functionality, e.g.

    static QWGLContext::openGLModuleHandle()

    openGLContext->platformInterface<QEGLContext>->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 <Friedemann.Kleint@qt.io>
2020-07-02 10:27:50 +02:00
..
CMakeLists.txt Regenerate projects one last time before merge 2020-02-12 17:30:49 +00:00
main.cpp Updated license headers 2016-01-21 18:55:18 +00:00
qopenglcontext.pro Introduce platform API abstraction for QOpenGLContext 2020-07-02 10:27:50 +02:00
qopenglcontextwindow.cpp Introduce platform API abstraction for QOpenGLContext 2020-07-02 10:27:50 +02:00
qopenglcontextwindow.h Introduce platform API abstraction for QOpenGLContext 2020-07-02 10:27:50 +02:00
qticon64.png Support adopting an existing EGLContext in eglfs and xcb 2014-05-09 13:24:55 +02:00