summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/windows/openglblacklists
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@theqtcompany.com>2015-06-18 16:59:54 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-06-19 17:52:19 +0000
commita6000e2b6679d91c9dab44e49b485de6816372bc (patch)
tree8efbea240b04803f34778acb011d2fa8ef3ed068 /src/plugins/platforms/windows/openglblacklists
parent2de01c83885e7a19696e052d96abd71451725100 (diff)
windows: Disable D3D9/11 with ANGLE in VMs
By adding support for the driver description, we can detect if we are in VMware. In this case D3D9 and 11 get disabled, so only the software-based options are in use. This allows running autotests like tst_qopengl, tst_qopenglwidget, tst_qgl, etc. in the Qt CI system. There OpenGL 2.x is not available, so ANGLE is the only option. D3D11 is not an option, so it picks D3D9 by default. However, this results in mystic failures. The stable solution seems to be to use WARP. This can be achieved by setting disable_d3d9 in the built-in GPU blacklist. Change-Id: I937c4b3fa82fc1a2d524b4eb712732722df2070c Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/plugins/platforms/windows/openglblacklists')
-rw-r--r--src/plugins/platforms/windows/openglblacklists/default.json12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/plugins/platforms/windows/openglblacklists/default.json b/src/plugins/platforms/windows/openglblacklists/default.json
index 23607523bd..096db2503f 100644
--- a/src/plugins/platforms/windows/openglblacklists/default.json
+++ b/src/plugins/platforms/windows/openglblacklists/default.json
@@ -1,6 +1,6 @@
{
"name": "Qt built-in GPU driver blacklist",
- "version": "5.5",
+ "version": "5.6",
"entries": [
{
"id": 1,
@@ -17,6 +17,16 @@
"features": [
"disable_desktopgl"
]
+ },
+ {
+ "id": 2,
+ "description": "Disable D3D9 and 11, and rely on software-only D3D in VMs",
+ "driver_description": "VMware SVGA 3D",
+ "features": [
+ "disable_d3d9",
+ "disable_d3d11"
+ ]
}
+
]
}