summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@theqtcompany.com>2015-04-13 08:52:25 +0200
committerLaszlo Agocs <laszlo.agocs@theqtcompany.com>2015-04-16 13:14:28 +0000
commit700eb7a2a58dd64c03c5855f2b038e7cbce1fc12 (patch)
tree2f63b38958a02091907229646bcd056a3851d1d1 /src/plugins/platforms
parentcbb918753c493959a53e7e62db62007d3e4ffb4b (diff)
windows: Add a version test to the Intel HD blacklist
The original rule was way too broad: it disabled desktop GL many HD 4400 machines that have no problems with it at all. While the rule with the version check is somewhat dubious, it is the only thing we can do. Task-number: QTBUG-45505 Task-number: QTBUG-43263 Change-Id: I217a96a2a9c7cc2d000a8f06493d0857626f2aaa Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com>
Diffstat (limited to 'src/plugins/platforms')
-rw-r--r--src/plugins/platforms/windows/openglblacklists/default.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/platforms/windows/openglblacklists/default.json b/src/plugins/platforms/windows/openglblacklists/default.json
index 0217b79ecf..23607523bd 100644
--- a/src/plugins/platforms/windows/openglblacklists/default.json
+++ b/src/plugins/platforms/windows/openglblacklists/default.json
@@ -4,12 +4,16 @@
"entries": [
{
"id": 1,
- "description": "Desktop OpenGL is unreliable on Intel HD3000/GMA (QTBUG-43263, QTBUG-42240)",
+ "description": "Desktop OpenGL is unreliable on some Intel HD laptops (QTBUG-43263, QTBUG-42240)",
"vendor_id": "0x8086",
"device_id": [ "0x0A16" ],
"os": {
"type": "win"
},
+ "driver_version": {
+ "op": "<=",
+ "value": "10.18.10.3277"
+ },
"features": [
"disable_desktopgl"
]