summaryrefslogtreecommitdiffstats
path: root/tests/manual/rhi/multiwindow
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@qt.io>2022-07-15 14:16:23 +0200
committerLaszlo Agocs <laszlo.agocs@qt.io>2022-08-01 12:40:45 +0200
commit5b334729d30d89ad7433f7051d94acb21a1938fb (patch)
tree81cbe85ab6dcfdd63404c98e4842c33044dcdf36 /tests/manual/rhi/multiwindow
parent950d761f81079e152203e5460a3c984e89d7e077 (diff)
rhi: gl: Avoid magic adjustments to the context/window format
...by removing the entire adjustedFormat() helper. Qt Quick has never used this, which indicates it is not that useful. Same goes for Qt Multimedia or Qt 3D. Ensuring depth and stencil is requested is already solved by using QSurfaceFormat::setDefaultFormat() or by adjusting the formats everywhere as appropriate. The helper function's usages are in the manual tests that use it as a shortcut, and in the GL backend itself. Remove it and leave it up the client to set the depth or stencil buffer size, typically in the global default surface format. (which in fact many of the mentioned manual tests already did, so some of calls to window->setFormat(adjustedFormat()) were completely unnecessary) By not having the built-in magic that tries to always force depth and stencil, we avoid problems that arise then the helper cannot be easily invoked (thinking of widgets and backingstores), and so one ends up with unexpected stencil (or depth) in the context (where the GL backend auto-adjusts), but not in the window (which is not under QRhi's control). It was in practice possible to trigger EGL_BAD_MATCH failures with the new rhi-based widget composition on EGL-based systems. For example, if an application with a QOpenGLWidget did not set both depth and stencil (but only one, or none), it ended up failing due to the context - surface EGLConfig mismatches. On other platforms this matters less due to less strict config/pixelformat management. Pick-to: 6.4 Change-Id: I28ae2de163de63ee91bee3ceae08b58e106e1380 Fixes: QTBUG-104951 Reviewed-by: Andy Nichols <andy.nichols@qt.io>
Diffstat (limited to 'tests/manual/rhi/multiwindow')
-rw-r--r--tests/manual/rhi/multiwindow/multiwindow.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/tests/manual/rhi/multiwindow/multiwindow.cpp b/tests/manual/rhi/multiwindow/multiwindow.cpp
index 0240c21a2f..f25a68c621 100644
--- a/tests/manual/rhi/multiwindow/multiwindow.cpp
+++ b/tests/manual/rhi/multiwindow/multiwindow.cpp
@@ -268,17 +268,15 @@ Window::Window(const QString &title, const QColor &bgColor, int axis, bool noVSy
switch (graphicsApi) {
case OpenGL:
{
-#if QT_CONFIG(opengl)
setSurfaceType(OpenGLSurface);
- QSurfaceFormat fmt = QRhiGles2InitParams::adjustedFormat(); // default + depth/stencil
- fmt.setSwapInterval(noVSync ? 0 : 1); // + swap interval
+ QSurfaceFormat fmt = QSurfaceFormat::defaultFormat();
+ fmt.setSwapInterval(noVSync ? 0 : 1);
setFormat(fmt);
-#endif
}
break;
case Vulkan:
-#if QT_CONFIG(vulkan)
setSurfaceType(VulkanSurface);
+#if QT_CONFIG(vulkan)
setVulkanInstance(r.instance);
#endif
break;
@@ -511,6 +509,10 @@ int main(int argc, char **argv)
qDebug("Selected graphics API is %s", qPrintable(graphicsApiName()));
qDebug("This is a multi-api example, use command line arguments to override:\n%s", qPrintable(cmdLineParser.helpText()));
+ QSurfaceFormat fmt;
+ fmt.setDepthBufferSize(24);
+ QSurfaceFormat::setDefaultFormat(fmt);
+
#if QT_CONFIG(vulkan)
r.instance = new QVulkanInstance;
if (graphicsApi == Vulkan) {