OLD | NEW |
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 // 20. "browser_version" is a VERSION structure (defined below). If this | 45 // 20. "browser_version" is a VERSION structure (defined below). If this |
46 // condition is not satisfied, the entry will be ignored. If it is not | 46 // condition is not satisfied, the entry will be ignored. If it is not |
47 // present, then the entry applies to all versions of the browser. | 47 // present, then the entry applies to all versions of the browser. |
48 // 21. "disabled" is a boolean. If it is present, the entry will be skipped. | 48 // 21. "disabled" is a boolean. If it is present, the entry will be skipped. |
49 // This can not be used in exceptions. | 49 // This can not be used in exceptions. |
50 // | 50 // |
51 // VERSION includes "op", "style", "number", and "number2". "op" can be any of | 51 // VERSION includes "op", "style", "number", and "number2". "op" can be any of |
52 // the following values: "=", "<", "<=", ">", ">=", "any", "between". "style" | 52 // the following values: "=", "<", "<=", ">", ">=", "any", "between". "style" |
53 // is optional and can be "lexical" or "numerical"; if it's not specified, it | 53 // is optional and can be "lexical" or "numerical"; if it's not specified, it |
54 // defaults to "numerical". "number2" is only used if "op" is "between". | 54 // defaults to "numerical". "number2" is only used if "op" is "between". |
| 55 // "between" is "number <= * <= number2". |
55 // "number" is used for all "op" values except "any". "number" and "number2" | 56 // "number" is used for all "op" values except "any". "number" and "number2" |
56 // are in the format of x, x.x, x.x.x, etc. | 57 // are in the format of x, x.x, x.x.x, etc. |
57 // Only "driver_version" supports lexical style if the format is major.minor; | 58 // Only "driver_version" supports lexical style if the format is major.minor; |
58 // in that case, major is still numerical, but minor is lexical. | 59 // in that case, major is still numerical, but minor is lexical. |
59 // | 60 // |
60 // STRING includes "op" and "value". "op" can be any of the following values: | 61 // STRING includes "op" and "value". "op" can be any of the following values: |
61 // "contains", "beginwith", "endwith", "=". "value" is a string. | 62 // "contains", "beginwith", "endwith", "=". "value" is a string. |
62 // | 63 // |
63 // FLOAT includes "op" "value", and "value2". "op" can be any of the | 64 // FLOAT includes "op" "value", and "value2". "op" can be any of the |
64 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is | 65 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is |
65 // only used if "op" is "between". "value" is used for all "op" values except | 66 // only used if "op" is "between". "value" is used for all "op" values except |
66 // "any". "value" and "value2" are valid float numbers. | 67 // "any". "value" and "value2" are valid float numbers. |
67 | 68 |
68 { | 69 { |
69 "name": "software rendering list", | 70 "name": "software rendering list", |
70 // Please update the version number whenever you change this file. | 71 // Please update the version number whenever you change this file. |
71 "version": "3.1", | 72 "version": "3.2", |
72 "entries": [ | 73 "entries": [ |
73 { | 74 { |
74 "id": 1, | 75 "id": 1, |
75 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, | 76 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, |
76 "webkit_bugs": [47028], | 77 "webkit_bugs": [47028], |
77 "os": { | 78 "os": { |
78 "type": "macosx" | 79 "type": "macosx" |
79 }, | 80 }, |
80 "vendor_id": "0x1002", | 81 "vendor_id": "0x1002", |
81 "device_id": ["0x7249"], | 82 "device_id": ["0x7249"], |
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 "texture_sharing" | 582 "texture_sharing" |
582 ] | 583 ] |
583 }, | 584 }, |
584 { | 585 { |
585 "id": 44, | 586 "id": 44, |
586 "description": "Intel HD 4000 causes kernel panic on Lion.", | 587 "description": "Intel HD 4000 causes kernel panic on Lion.", |
587 "cr_bugs": [134015], | 588 "cr_bugs": [134015], |
588 "os": { | 589 "os": { |
589 "type": "macosx", | 590 "type": "macosx", |
590 "version": { | 591 "version": { |
591 "op": "=", | 592 "op": "between", |
592 "number": "10.7" | 593 "number": "10.7.0", |
| 594 "number2": "10.7.4" |
593 } | 595 } |
594 }, | 596 }, |
595 "vendor_id": "0x8086", | 597 "vendor_id": "0x8086", |
596 "device_id": ["0x0166"], | 598 "device_id": ["0x0166"], |
597 "multi_gpu_category": "any", | 599 "multi_gpu_category": "any", |
598 "blacklist": [ | 600 "blacklist": [ |
599 "all" | 601 "all" |
600 ] | 602 ] |
601 }, | 603 }, |
602 { | 604 { |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
699 "gl_vendor": { | 701 "gl_vendor": { |
700 "op": "beginwith", | 702 "op": "beginwith", |
701 "value": "VMware" | 703 "value": "VMware" |
702 }, | 704 }, |
703 "blacklist": [ | 705 "blacklist": [ |
704 "all" | 706 "all" |
705 ] | 707 ] |
706 } | 708 } |
707 ] | 709 ] |
708 } | 710 } |
OLD | NEW |