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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 // "contains", "beginwith", "endwith", "=". "value" is a string. | 58 // "contains", "beginwith", "endwith", "=". "value" is a string. |
59 // | 59 // |
60 // 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 |
61 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is | 61 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is |
62 // 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 |
63 // "any". "value" and "value2" are valid float numbers. | 63 // "any". "value" and "value2" are valid float numbers. |
64 | 64 |
65 { | 65 { |
66 "name": "software rendering list", | 66 "name": "software rendering list", |
67 // Please update the version number whenever you change this file. | 67 // Please update the version number whenever you change this file. |
68 "version": "1.38", | 68 "version": "1.39", |
69 "entries": [ | 69 "entries": [ |
70 { | 70 { |
71 "id": 1, | 71 "id": 1, |
72 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, | 72 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, |
73 "webkit_bugs": [47028], | 73 "webkit_bugs": [47028], |
74 "os": { | 74 "os": { |
75 "type": "macosx" | 75 "type": "macosx" |
76 }, | 76 }, |
77 "vendor_id": "0x1002", | 77 "vendor_id": "0x1002", |
78 "device_id": ["0x7249"], | 78 "device_id": ["0x7249"], |
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 "os": { | 567 "os": { |
568 "type": "linux" | 568 "type": "linux" |
569 }, | 569 }, |
570 "multi_gpu_style": "optimus", | 570 "multi_gpu_style": "optimus", |
571 "blacklist": [ | 571 "blacklist": [ |
572 "all" | 572 "all" |
573 ] | 573 ] |
574 }, | 574 }, |
575 { | 575 { |
576 "id": 38, | 576 "id": 38, |
577 "description": "NVidia GeForce 9400M is buggy on Mac.", | 577 "description": "Accelerated 2D canvas is unstable for NVidia GeForce 9400M
on Lion.", |
578 "cr_bugs": [130495], | 578 "cr_bugs": [130495], |
579 "os": { | 579 "os": { |
580 "type": "macosx" | 580 "type": "macosx", |
| 581 "version": { |
| 582 "op": "=", |
| 583 "number": "10.7" |
| 584 } |
581 }, | 585 }, |
582 "vendor_id": "0x10de", | 586 "vendor_id": "0x10de", |
583 "device_id": ["0x0863"], | 587 "device_id": ["0x0863"], |
584 "blacklist": [ | 588 "blacklist": [ |
585 "all" | 589 "accelerated_2d_canvas" |
586 ] | 590 ] |
587 } | 591 } |
588 ] | 592 ] |
589 } | 593 } |
OLD | NEW |