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

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

Issue 11095006: Blacklist video and flash acceleration on NVIDIA Linux drivers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix comma syntax Created 8 years, 2 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 // 67 //
68 // FLOAT includes "op" "value", and "value2". "op" can be any of the 68 // FLOAT includes "op" "value", and "value2". "op" can be any of the
69 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is 69 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is
70 // only used if "op" is "between". "value" is used for all "op" values except 70 // only used if "op" is "between". "value" is used for all "op" values except
71 // "any". "value" and "value2" are valid float numbers. 71 // "any". "value" and "value2" are valid float numbers.
72 // INT is very much like FLOAT, except that the values need to be integers. 72 // INT is very much like FLOAT, except that the values need to be integers.
73 73
74 { 74 {
75 "name": "software rendering list", 75 "name": "software rendering list",
76 // Please update the version number whenever you change this file. 76 // Please update the version number whenever you change this file.
77 "version": "3.7", 77 "version": "3.8",
78 "entries": [ 78 "entries": [
79 { 79 {
80 "id": 1, 80 "id": 1,
81 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , 81 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." ,
82 "webkit_bugs": [47028], 82 "webkit_bugs": [47028],
83 "os": { 83 "os": {
84 "type": "macosx" 84 "type": "macosx"
85 }, 85 },
86 "vendor_id": "0x1002", 86 "vendor_id": "0x1002",
87 "device_id": ["0x7249"], 87 "device_id": ["0x7249"],
(...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after
829 "device_id": ["0x29a2"], 829 "device_id": ["0x29a2"],
830 "driver_version": { 830 "driver_version": {
831 "op": ">=", 831 "op": ">=",
832 "number": "7.15.10.1624" 832 "number": "7.15.10.1624"
833 } 833 }
834 } 834 }
835 ], 835 ],
836 "blacklist": [ 836 "blacklist": [
837 "all" 837 "all"
838 ] 838 ]
839 },
840 {
841 "id": 56,
842 "description": "NVIDIA linux drivers are unstable when using multiple Open GL contexts and with low memory.",
843 "cr_bugs": [145600],
844 "os": {
845 "type": "linux"
846 },
847 "vendor_id": "0x10de",
848 "driver_vendor": {
849 "op": "=",
850 "value": "NVIDIA"
851 },
852 "blacklist": [
853 "accelerated_video",
854 "accelerated_video_decode",
855 "flash_3d",
856 "flash_stage3d"
857 ]
839 } 858 }
840 ] 859 ]
841 } 860 }
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