Commit ed3a13d0 authored by vmiura's avatar vmiura Committed by Commit bot

Change GPU blacklist for Linux Optiums GPUs.

The current blacklist entry will exclude any Optimus configuration when
GPU driver that isn't "Mesa >= 10.1".  This is (unintentionally) blocking
GPU on devices where the NVIDIA driver is used.

This CL changes the intent so that we blacklist "Mesa < 10.1" rather than
"anything except Mesa >= 10.1".

BUG=530981

Review URL: https://codereview.chromium.org/1522683002

Cr-Commit-Position: refs/heads/master@{#367038}
parent 1a3e9eb8
......@@ -18,7 +18,7 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
{
"name": "software rendering list",
// Please update the version number whenever you change this file.
"version": "10.16",
"version": "10.17",
"entries": [
{
"id": 1,
......@@ -369,16 +369,12 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
"type": "linux"
},
"multi_gpu_style": "optimus",
"exceptions": [
{
"driver_vendor": "Mesa",
"driver_version": {
"op": ">=",
"value": "10.1"
},
"gl_vendor": "Intel.*"
}
],
"driver_vendor": "Mesa",
"driver_version": {
"op": "<",
"value": "10.1"
},
"gl_vendor": "Intel.*",
"features": [
"all"
]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment