diff options
author | ccameron@chromium.org <ccameron@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-29 19:40:26 +0000 |
---|---|---|
committer | ccameron@chromium.org <ccameron@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-29 19:40:26 +0000 |
commit | d8eafaf19863c07796e5ef52ec61491d9970fcca (patch) | |
tree | c4d8c1b4ea66aa6ab438c1eef560e5ad11f7bf9e /gpu | |
parent | d1d41c156d822e8b395cf17c983b7fa5b0c5618d (diff) | |
download | chromium_src-d8eafaf19863c07796e5ef52ec61491d9970fcca.zip chromium_src-d8eafaf19863c07796e5ef52ec61491d9970fcca.tar.gz chromium_src-d8eafaf19863c07796e5ef52ec61491d9970fcca.tar.bz2 |
Revert 220177 "Remove compositing blacklisting of 10.7 and 10.6."
BUG=281514
> Remove compositing blacklisting of 10.7 and 10.6.
>
> Remove irrelevant blacklisting of 10.5 (has been EOLed).
>
> BUG=266186
> TBR=kbr@chromium.org, zmo@chromium.org
>
> Review URL: https://chromiumcodereview.appspot.com/23518003
TBR=ccameron@chromium.org
Review URL: https://codereview.chromium.org/23772003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@220354 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu')
-rw-r--r-- | gpu/config/software_rendering_list_json.cc | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/gpu/config/software_rendering_list_json.cc b/gpu/config/software_rendering_list_json.cc index 5da0f67..4a2f0bf 100644 --- a/gpu/config/software_rendering_list_json.cc +++ b/gpu/config/software_rendering_list_json.cc @@ -89,7 +89,7 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST( { "name": "software rendering list", // Please update the version number whenever you change this file. - "version": "6.7", + "version": "6.6", "entries": [ { "id": 1, @@ -368,6 +368,21 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST( ] }, { + "id": 19, + "description": "GPU acceleration is no longer supported in Leopard.", + "cr_bugs": [87157, 130495], + "os": { + "type": "macosx", + "version": { + "op": "=", + "number": "10.5" + } + }, + "features": [ + "all" + ] + }, + { "id": 23, "description": "Mesa drivers in linux older than 7.11 are assumed to be buggy.", "os": { @@ -972,6 +987,21 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST( ] }, { + "id": 66, + "description": "Force compositing mode is unstable in MacOSX earlier than 10.8.", + "cr_bugs": [174101], + "os": { + "type": "macosx", + "version": { + "op": "<", + "number": "10.8" + } + }, + "features": [ + "force_compositing_mode" + ] + }, + { "id": 67, "description": "Accelerated 2D Canvas is not supported on WinXP.", "cr_bugs": [175149], |