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

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

Issue 6568009: Merge r75130:... (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 | « chrome/browser/gpu_process_host.cc ('k') | 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.8", 3 "version": "0.9",
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 "id": "8", 80 "id": "8",
81 "os": { 81 "os": {
82 "type": "any" 82 "type": "any"
83 }, 83 },
84 "vendor_id": "0x10de", 84 "vendor_id": "0x10de",
85 "device_id": "0x0324", 85 "device_id": "0x0324",
86 "blacklist": [ 86 "blacklist": [
87 "webgl", 87 "webgl",
88 "accelerated_compositing" 88 "accelerated_compositing"
89 ] 89 ]
90 },
91 { // Windows XP, BUG=72975
92 "id": "9",
93 "os": {
94 "type": "win",
95 "version": {
96 "op": "=",
97 "number": "5"
98 }
99 },
100 "blacklist": [
101 "webgl",
102 "accelerated_compositing"
103 ]
90 } 104 }
91 ] 105 ]
92 } 106 }
OLDNEW
« no previous file with comments | « chrome/browser/gpu_process_host.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698