OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Determines whether certain gpu-related features are blacklisted or not. | 5 // Determines whether certain gpu-related features are blacklisted or not. |
6 // The format of a valid software_rendering_list.json file is defined in | 6 // The format of a valid software_rendering_list.json file is defined in |
7 // <gpu/config/gpu_control_list_format.txt>. | 7 // <gpu/config/gpu_control_list_format.txt>. |
8 // The supported "features" can be found in <gpu/config/gpu_blacklist.cc>. | 8 // The supported "features" can be found in <gpu/config/gpu_blacklist.cc>. |
9 | 9 |
10 #include "gpu/config/gpu_control_list_jsons.h" | 10 #include "gpu/config/gpu_control_list_jsons.h" |
11 | 11 |
12 #define LONG_STRING_CONST(...) #__VA_ARGS__ | 12 #define LONG_STRING_CONST(...) #__VA_ARGS__ |
13 | 13 |
14 namespace gpu { | 14 namespace gpu { |
15 | 15 |
16 const char kSoftwareRenderingListJson[] = LONG_STRING_CONST( | 16 const char kSoftwareRenderingListJson[] = LONG_STRING_CONST( |
17 | 17 |
18 { | 18 { |
19 "name": "software rendering list", | 19 "name": "software rendering list", |
20 // Please update the version number whenever you change this file. | 20 // Please update the version number whenever you change this file. |
21 "version": "6.14", | 21 "version": "6.15", |
22 "entries": [ | 22 "entries": [ |
23 { | 23 { |
24 "id": 1, | 24 "id": 1, |
25 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, | 25 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, |
26 "webkit_bugs": [47028], | 26 "webkit_bugs": [47028], |
27 "os": { | 27 "os": { |
28 "type": "macosx" | 28 "type": "macosx" |
29 }, | 29 }, |
30 "vendor_id": "0x1002", | 30 "vendor_id": "0x1002", |
31 "device_id": ["0x7249"], | 31 "device_id": ["0x7249"], |
(...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 "version": { | 782 "version": { |
783 "op": "<", | 783 "op": "<", |
784 "value": "6.1" | 784 "value": "6.1" |
785 } | 785 } |
786 }, | 786 }, |
787 "features": [ | 787 "features": [ |
788 "accelerated_video_decode" | 788 "accelerated_video_decode" |
789 ] | 789 ] |
790 }, | 790 }, |
791 { | 791 { |
792 "id": 66, | |
793 "description": "Force compositing mode is unstable in MacOSX earlier than
10.8.", | |
794 "cr_bugs": [174101], | |
795 "os": { | |
796 "type": "macosx", | |
797 "version": { | |
798 "op": "<", | |
799 "value": "10.8" | |
800 } | |
801 }, | |
802 "features": [ | |
803 "force_compositing_mode" | |
804 ] | |
805 }, | |
806 { | |
807 "id": 68, | 792 "id": 68, |
808 "description": "VMware Fusion 4 has corrupt rendering with Win Vista+.", | 793 "description": "VMware Fusion 4 has corrupt rendering with Win Vista+.", |
809 "cr_bugs": [169470], | 794 "cr_bugs": [169470], |
810 "os": { | 795 "os": { |
811 "type": "win", | 796 "type": "win", |
812 "version": { | 797 "version": { |
813 "op": ">=", | 798 "op": ">=", |
814 "value": "6.0" | 799 "value": "6.0" |
815 } | 800 } |
816 }, | 801 }, |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
991 { | 976 { |
992 "id": 80, | 977 "id": 80, |
993 "description": "Texture sharing should be disabled on all Windows machines
", | 978 "description": "Texture sharing should be disabled on all Windows machines
", |
994 "cr_bugs": [304369], | 979 "cr_bugs": [304369], |
995 "os": { | 980 "os": { |
996 "type": "win" | 981 "type": "win" |
997 }, | 982 }, |
998 "features": [ | 983 "features": [ |
999 "texture_sharing" | 984 "texture_sharing" |
1000 ] | 985 ] |
| 986 }, |
| 987 { |
| 988 "id": 81, |
| 989 "description": "Apple software renderer used under VMWare hangs on Mac OS
10.7.", |
| 990 "cr_bugs": [230931], |
| 991 "os": { |
| 992 "type": "macosx", |
| 993 "version": { |
| 994 "op": "=", |
| 995 "value": "10.7" |
| 996 } |
| 997 }, |
| 998 "vendor_id": "0x15ad", |
| 999 "features": [ |
| 1000 "force_compositing_mode" |
| 1001 ] |
1001 } | 1002 } |
1002 ] | 1003 ] |
1003 } | 1004 } |
1004 | 1005 |
1005 ); // LONG_STRING_CONST macro | 1006 ); // LONG_STRING_CONST macro |
1006 | 1007 |
1007 } // namespace gpu | 1008 } // namespace gpu |
OLD | NEW |