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

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

Issue 7562025: Blacklist Mesa drivers older than 7.11. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 software_rendering_list.json file are in the format of 2 // A valid software_rendering_list.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 29 matching lines...) Expand all
40 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is 40 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is
41 // only used if "op" is "between". "number" is used for all "op" values except 41 // only used if "op" is "between". "number" is used for all "op" values except
42 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc. 42 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc.
43 // 43 //
44 // STRING includes "op" and "value". "op" can be any of the following values: 44 // STRING includes "op" and "value". "op" can be any of the following values:
45 // "contains", "beginwith", "endwith", "=". "value" is a string. 45 // "contains", "beginwith", "endwith", "=". "value" is a string.
46 46
47 { 47 {
48 "name": "software rendering list", 48 "name": "software rendering list",
49 // Please update the version number whenever you change this file. 49 // Please update the version number whenever you change this file.
50 "version": "1.15", 50 "version": "1.16",
51 "entries": [ 51 "entries": [
52 { 52 {
53 "id": 1, 53 "id": 1,
54 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , 54 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." ,
55 "webkit_bugs": [47028], 55 "webkit_bugs": [47028],
56 "os": { 56 "os": {
57 "type": "macosx" 57 "type": "macosx"
58 }, 58 },
59 "vendor_id": "0x1002", 59 "vendor_id": "0x1002",
60 "device_id": ["0x7249"], 60 "device_id": ["0x7249"],
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 "op": "=", 322 "op": "=",
323 "value": "NVIDIA" 323 "value": "NVIDIA"
324 }, 324 },
325 "driver_version": { 325 "driver_version": {
326 "op": "<", 326 "op": "<",
327 "number": "195.36.24" 327 "number": "195.36.24"
328 }, 328 },
329 "blacklist": [ 329 "blacklist": [
330 "all" 330 "all"
331 ] 331 ]
332 },
333 {
334 "id": 23,
335 "description": "Mesa drivers in linux older than 7.11 are assumed to be bu ggy.",
336 "os": {
337 "type": "linux"
338 },
339 "driver_vendor": {
340 "op": "=",
341 "value": "Mesa"
342 },
343 "driver_version": {
344 "op": "<",
345 "number": "7.11"
346 },
347 "blacklist": [
348 "all"
349 ]
332 } 350 }
333 ] 351 ]
334 } 352 }
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