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.15", | 21 "version": "6.14", |
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 { |
792 "id": 68, | 807 "id": 68, |
793 "description": "VMware Fusion 4 has corrupt rendering with Win Vista+.", | 808 "description": "VMware Fusion 4 has corrupt rendering with Win Vista+.", |
794 "cr_bugs": [169470], | 809 "cr_bugs": [169470], |
795 "os": { | 810 "os": { |
796 "type": "win", | 811 "type": "win", |
797 "version": { | 812 "version": { |
798 "op": ">=", | 813 "op": ">=", |
799 "value": "6.0" | 814 "value": "6.0" |
800 } | 815 } |
801 }, | 816 }, |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
976 { | 991 { |
977 "id": 80, | 992 "id": 80, |
978 "description": "Texture sharing should be disabled on all Windows machines
", | 993 "description": "Texture sharing should be disabled on all Windows machines
", |
979 "cr_bugs": [304369], | 994 "cr_bugs": [304369], |
980 "os": { | 995 "os": { |
981 "type": "win" | 996 "type": "win" |
982 }, | 997 }, |
983 "features": [ | 998 "features": [ |
984 "texture_sharing" | 999 "texture_sharing" |
985 ] | 1000 ] |
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 ] | |
1002 } | 1001 } |
1003 ] | 1002 ] |
1004 } | 1003 } |
1005 | 1004 |
1006 ); // LONG_STRING_CONST macro | 1005 ); // LONG_STRING_CONST macro |
1007 | 1006 |
1008 } // namespace gpu | 1007 } // namespace gpu |
OLD | NEW |