diff options
author | zmo@google.com <zmo@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-06 20:49:20 +0000 |
---|---|---|
committer | zmo@google.com <zmo@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-06 20:49:20 +0000 |
commit | b3ad88748ab65dadf71527f62a10fb0c62b9ba7e (patch) | |
tree | 8eea1e3eca35afd29a6b9738499016e436e26fbd /content | |
parent | ee8a32e2e17fbcdd70fcd6d147b5fceb910984a0 (diff) | |
download | chromium_src-b3ad88748ab65dadf71527f62a10fb0c62b9ba7e.zip chromium_src-b3ad88748ab65dadf71527f62a10fb0c62b9ba7e.tar.gz chromium_src-b3ad88748ab65dadf71527f62a10fb0c62b9ba7e.tar.bz2 |
Disable multisampling for Intel GPUs on Mac
It causes corrupted rendering.
BUG=137303
TEST=content_unittests
TBR=kbr
Review URL: https://codereview.chromium.org/11293123
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166261 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/browser/gpu/software_rendering_list.json | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/content/browser/gpu/software_rendering_list.json b/content/browser/gpu/software_rendering_list.json index e9837c1..253e18c 100644 --- a/content/browser/gpu/software_rendering_list.json +++ b/content/browser/gpu/software_rendering_list.json @@ -74,7 +74,7 @@ { "name": "software rendering list", // Please update the version number whenever you change this file. - "version": "4.2", + "version": "4.3", "entries": [ { "id": 1, @@ -912,11 +912,22 @@ "os": { "type": "macosx" }, - "multi_gpu_category": "any", "vendor_id": "0x10de", "blacklist": [ "multisampling" ] + }, + { + "id": 61, + "description": "Multisampling is buggy on Mac with Intel gpu.", + "cr_bugs": [137303], + "os": { + "type": "macosx" + }, + "vendor_id": "0x8086", + "blacklist": [ + "multisampling" + ] } ] } |