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

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

Issue 6271022: Blacklisted GPU acceleration for Intel 945 on Windows.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 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 // Determines whether certain gpu-related features are blacklisted or not. 1 // Determines whether certain gpu-related features are blacklisted or not.
2 // A valid gpu_blacklist.json file are in the format of 2 // A valid gpu_blacklist.json file are in the format of
3 // { 3 // {
4 // "version": "x.y", 4 // "version": "x.y",
5 // "entries": [ 5 // "entries": [
6 // { // entry 1 6 // { // entry 1
7 // }, 7 // },
8 // ... 8 // ...
9 // { // entry n 9 // { // entry n
10 // } 10 // }
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 "os": { 74 "os": {
75 "type": "linux" 75 "type": "linux"
76 }, 76 },
77 "gl_renderer": { 77 "gl_renderer": {
78 "op": "contains", 78 "op": "contains",
79 "value": "software" 79 "value": "software"
80 }, 80 },
81 "blacklist": [ 81 "blacklist": [
82 "accelerated_compositing" 82 "accelerated_compositing"
83 ] 83 ]
84 },
85 { // Intel Mobile 945 Express Chipset Family
86 "id": "4",
87 "os": {
88 "type": "win"
89 },
90 "vendor_id": "0x8086",
91 "device_id": "0x27AE",
92 "blacklist": [
93 "webgl"
94 ]
84 } 95 }
85 ] 96 ]
86 } 97 }
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