Commit 5773db72 authored by zmo@chromium.org's avatar zmo@chromium.org

Allow WMware software renderer with newer Mesa drivers in Linux

Currently it's anything equal or newer than 9.2.1

BUG=332596
TEST=
R=kbr@chromium.org

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243940 0039d316-1c4b-4281-b951-d872f2087c98
parent d00c0bc9
......@@ -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": "6.22",
"version": "6.23",
"entries": [
{
"id": 1,
......@@ -566,8 +566,8 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
},
{
"id": 50,
"description": "Disable VMware software renderer",
"cr_bugs": [145531],
"description": "Disable VMware software renderer on older Mesa",
"cr_bugs": [145531, 332596],
"os": {
"type": "linux"
},
......@@ -575,6 +575,18 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
"op": "beginwith",
"value": "VMware"
},
"exceptions": [
{
"driver_vendor": {
"op": "=",
"value": "Mesa"
},
"driver_version": {
"op": ">=",
"value": "9.2.1"
}
}
],
"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