Chromium Code Reviews| Index: gpu/config/software_rendering_list_json.cc |
| diff --git a/gpu/config/software_rendering_list_json.cc b/gpu/config/software_rendering_list_json.cc |
| index b7c5c539801f1f42f86469f05d3ddeac10104204..a3607dc253ec2918459b9cff26ade471bf2ea31f 100644 |
| --- a/gpu/config/software_rendering_list_json.cc |
| +++ b/gpu/config/software_rendering_list_json.cc |
| @@ -67,7 +67,7 @@ |
| // "number" is used for all "op" values except "any". "number" and "number2" |
| // are in the format of x, x.x, x.x.x, etc. |
| // Only "driver_version" supports lexical style if the format is major.minor; |
| -// in that case, major is still numerical, but minor is lexical. |
| +// in that case, major is still numerical, but minor is lexical. |
| // |
| // STRING includes "op" and "value". "op" can be any of the following values: |
| // "contains", "beginwith", "endwith", "=". "value" is a string. |
| @@ -89,7 +89,7 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST( |
| { |
| "name": "software rendering list", |
| // Please update the version number whenever you change this file. |
| - "version": "6.5", |
| + "version": "6.6", |
| "entries": [ |
| { |
| "id": 1, |
| @@ -1160,6 +1160,20 @@ LONG_STRING_CONST( |
| "features": [ |
| "webgl" |
| ] |
| + }, |
| + { |
| + "id": 77, |
|
Zhenyao Mo
2013/08/15 20:23:37
It would be better if you have a bug associated wi
gab
2013/08/15 21:03:19
Done.
|
| + "description": "Disable force compositing mode on all Windows versions prior to Vista.", |
| + "os": { |
| + "type": "win", |
| + "version": { |
| + "op": "<", |
| + "number": "6.0" |
| + } |
| + }, |
| + "features": [ |
| + "force_compositing_mode" |
| + ] |
| } |
| ] |
| } |
| @@ -1167,4 +1181,3 @@ LONG_STRING_CONST( |
| ); // LONG_STRING_CONST macro |
| } // namespace gpu |
| - |