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

Side by Side Diff: gpu/software_rendering_list/software_rendering_list.json

Issue 10541043: Adding documentation for "style" in version in software rendering list. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/
Patch Set: Created 8 years, 6 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 27 matching lines...) Expand all
38 // This field is mandatory. 38 // This field is mandatory.
39 // 16. "description" has the description of the entry. 39 // 16. "description" has the description of the entry.
40 // 17. "webkit_bugs" is an array of associated webkit bug numbers. 40 // 17. "webkit_bugs" is an array of associated webkit bug numbers.
41 // 18. "cr_bugs" is an array of associated webkit bug numbers. 41 // 18. "cr_bugs" is an array of associated webkit bug numbers.
42 // 19. "browser_version" is a VERSION structure (defined below). If this 42 // 19. "browser_version" is a VERSION structure (defined below). If this
43 // condition is not satisfied, the entry will be ignored. If it is not 43 // condition is not satisfied, the entry will be ignored. If it is not
44 // present, then the entry applies to all versions of the browser. 44 // present, then the entry applies to all versions of the browser.
45 // 20. "disabled" is a boolean. If it is present, the entry will be skipped. 45 // 20. "disabled" is a boolean. If it is present, the entry will be skipped.
46 // This can not be used in exceptions. 46 // This can not be used in exceptions.
47 // 47 //
48 // VERSION includes "op" "number", and "number2". "op" can be any of the 48 // VERSION includes "op", "style", "number", and "number2". "op" can be any of
49 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is 49 // the following values: "=", "<", "<=", ">", ">=", "any", "between". "style"
50 // only used if "op" is "between". "number" is used for all "op" values except 50 // is optional and can be "lexical" or "numerical"; if it's not specified, it
51 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc. 51 // defaults to "numerical". "number2" is only used if "op" is "between".
52 // "number" is used for all "op" values except "any". "number" and "number2"
53 // are in the format of x, x.x, x.x.x, etc.
54 // Only "driver_version" supports lexical style if the format is major.minor;
55 // in that case, major is still numerical, but minor is lexical.
52 // 56 //
53 // STRING includes "op" and "value". "op" can be any of the following values: 57 // STRING includes "op" and "value". "op" can be any of the following values:
54 // "contains", "beginwith", "endwith", "=". "value" is a string. 58 // "contains", "beginwith", "endwith", "=". "value" is a string.
55 // 59 //
56 // FLOAT includes "op" "value", and "value2". "op" can be any of the 60 // FLOAT includes "op" "value", and "value2". "op" can be any of the
57 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is 61 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is
58 // only used if "op" is "between". "value" is used for all "op" values except 62 // only used if "op" is "between". "value" is used for all "op" values except
59 // "any". "value" and "value2" are valid float numbers. 63 // "any". "value" and "value2" are valid float numbers.
60 64
61 { 65 {
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 "type": "macosx" 580 "type": "macosx"
577 }, 581 },
578 "vendor_id": "0x10de", 582 "vendor_id": "0x10de",
579 "device_id": ["0x0863"], 583 "device_id": ["0x0863"],
580 "blacklist": [ 584 "blacklist": [
581 "all" 585 "all"
582 ] 586 ]
583 } 587 }
584 ] 588 ]
585 } 589 }
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