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

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

Issue 12225103: Disable force-compositing-mode on MacOSX earlier than 10.8 (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 // 68 //
69 // FLOAT includes "op" "value", and "value2". "op" can be any of the 69 // FLOAT includes "op" "value", and "value2". "op" can be any of the
70 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is 70 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is
71 // only used if "op" is "between". "value" is used for all "op" values except 71 // only used if "op" is "between". "value" is used for all "op" values except
72 // "any". "value" and "value2" are valid float numbers. 72 // "any". "value" and "value2" are valid float numbers.
73 // INT is very much like FLOAT, except that the values need to be integers. 73 // INT is very much like FLOAT, except that the values need to be integers.
74 74
75 { 75 {
76 "name": "software rendering list", 76 "name": "software rendering list",
77 // Please update the version number whenever you change this file. 77 // Please update the version number whenever you change this file.
78 "version": "4.14", 78 "version": "4.15",
79 "entries": [ 79 "entries": [
80 { 80 {
81 "id": 1, 81 "id": 1,
82 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , 82 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." ,
83 "webkit_bugs": [47028], 83 "webkit_bugs": [47028],
84 "os": { 84 "os": {
85 "type": "macosx" 85 "type": "macosx"
86 }, 86 },
87 "vendor_id": "0x1002", 87 "vendor_id": "0x1002",
88 "device_id": ["0x7249"], 88 "device_id": ["0x7249"],
(...skipping 894 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 "os": { 983 "os": {
984 "type": "win", 984 "type": "win",
985 "version": { 985 "version": {
986 "op": "=", 986 "op": "=",
987 "number": "6.0" 987 "number": "6.0"
988 } 988 }
989 }, 989 },
990 "blacklist": [ 990 "blacklist": [
991 "force_compositing_mode" 991 "force_compositing_mode"
992 ] 992 ]
993 },
994 {
995 "id": 66,
996 "description": "Force compositing mode is unstable in MacOSX earlier than 10.8.",
997 "cr_bugs": [174101],
998 "os": {
999 "type": "macosx",
1000 "version": {
1001 "op": "<",
1002 "number": "10.8"
1003 }
1004 },
1005 "blacklist": [
1006 "force_compositing_mode"
1007 ]
993 } 1008 }
994 ] 1009 ]
995 } 1010 }
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