Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(260)

Side by Side Diff: chrome/browser/resources/gpu_blacklist.json

Issue 6490010: Merge 74306 - Blacklist ATI RadeonHD2600 on Mac.... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/597/src/
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "name": "gpu blacklist", 2 "name": "gpu blacklist",
3 "version": "0.5", 3 "version": "0.6",
4 "entries": [ 4 "entries": [
5 { // ATI Radeon X1900 on Mac, BUGWEBKIT=47028 5 { // ATI Radeon X1900 on Mac, BUGWEBKIT=47028
6 "os": { 6 "os": {
7 "type": "macosx" 7 "type": "macosx"
8 }, 8 },
9 "vendor_id": "0x1002", 9 "vendor_id": "0x1002",
10 "device_id": "0x7249", 10 "device_id": "0x7249",
11 "blacklist": [ 11 "blacklist": [
12 "webgl" 12 "webgl"
13 ] 13 ]
(...skipping 30 matching lines...) Expand all
44 }, 44 },
45 { // All ATI cards in linux, BUG=71381 45 { // All ATI cards in linux, BUG=71381
46 "id": "5", 46 "id": "5",
47 "os": { 47 "os": {
48 "type": "linux" 48 "type": "linux"
49 }, 49 },
50 "vendor_id": "0x1002", 50 "vendor_id": "0x1002",
51 "blacklist": [ 51 "blacklist": [
52 "webgl" 52 "webgl"
53 ] 53 ]
54 },
55 { // ATI Radeon HD2600 on Mac, BUG=68859
56 "id": "6",
57 "os": {
58 "type": "macosx"
59 },
60 "vendor_id": "0x1002",
61 "device_id": "0x9583",
62 "blacklist": [
63 "webgl",
64 "accelerated_compositing"
65 ]
54 } 66 }
55 ] 67 ]
56 } 68 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698