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" |
(...skipping 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1030 "description": "Intel Graphics Media Accelerator 3150 causes the GPU proce
ss to hang running WebGL", | 1030 "description": "Intel Graphics Media Accelerator 3150 causes the GPU proce
ss to hang running WebGL", |
1031 "cr_bugs": [305431], | 1031 "cr_bugs": [305431], |
1032 "os": { | 1032 "os": { |
1033 "type": "win" | 1033 "type": "win" |
1034 }, | 1034 }, |
1035 "vendor_id": "0x8086", | 1035 "vendor_id": "0x8086", |
1036 "device_id": ["0xa011"], | 1036 "device_id": ["0xa011"], |
1037 "features": [ | 1037 "features": [ |
1038 "webgl" | 1038 "webgl" |
1039 ] | 1039 ] |
| 1040 }, |
| 1041 { |
| 1042 "id": 87, |
| 1043 "description": "Accelerated video decode on Intel driver 10.18.10.3308 is
incompatible with the GPU sandbox", |
| 1044 "cr_bugs": [298968], |
| 1045 "os": { |
| 1046 "type": "win" |
| 1047 }, |
| 1048 "vendor_id": "0x8086", |
| 1049 "driver_version": { |
| 1050 "op": "=", |
| 1051 "value": "10.18.10.3308" |
| 1052 }, |
| 1053 "features": [ |
| 1054 "accelerated_video_decode" |
| 1055 ] |
| 1056 }, |
| 1057 { |
| 1058 "id": 88, |
| 1059 "description": "Accelerated video decode on AMD driver 13.152.1.8000 is in
compatible with the GPU sandbox", |
| 1060 "cr_bugs": [298968], |
| 1061 "os": { |
| 1062 "type": "win" |
| 1063 }, |
| 1064 "vendor_id": "0x1002", |
| 1065 "driver_version": { |
| 1066 "op": "=", |
| 1067 "value": "13.152.1.8000" |
| 1068 }, |
| 1069 "features": [ |
| 1070 "accelerated_video_decode" |
| 1071 ] |
| 1072 }, |
| 1073 { |
| 1074 "id": 89, |
| 1075 "description": "Accelerated video decode interferes with GPU sandbox on ce
rtain AMD drivers", |
| 1076 "cr_bugs": [298968], |
| 1077 "os": { |
| 1078 "type": "win" |
| 1079 }, |
| 1080 "vendor_id": "0x1002", |
| 1081 "driver_version": { |
| 1082 "op": "between", |
| 1083 "value": "8.810.4.5000", |
| 1084 "value2": "8.970.100.1100" |
| 1085 }, |
| 1086 "features": [ |
| 1087 "accelerated_video_decode" |
| 1088 ] |
| 1089 }, |
| 1090 { |
| 1091 "id": 90, |
| 1092 "description": "Accelerated video decode interferes with GPU sandbox on ce
rtain NVIDIA drivers", |
| 1093 "cr_bugs": [298968], |
| 1094 "os": { |
| 1095 "type": "win" |
| 1096 }, |
| 1097 "vendor_id": "0x10de", |
| 1098 "driver_version": { |
| 1099 "op": "between", |
| 1100 "value": "8.17.12.5729", |
| 1101 "value2": "8.17.12.8026" |
| 1102 }, |
| 1103 "features": [ |
| 1104 "accelerated_video_decode" |
| 1105 ] |
| 1106 }, |
| 1107 { |
| 1108 "id": 91, |
| 1109 "description": "Accelerated video decode interferes with GPU sandbox on ce
rtain NVIDIA drivers", |
| 1110 "cr_bugs": [298968], |
| 1111 "os": { |
| 1112 "type": "win" |
| 1113 }, |
| 1114 "vendor_id": "0x10de", |
| 1115 "driver_version": { |
| 1116 "op": "between", |
| 1117 "value": "9.18.13.783", |
| 1118 "value2": "9.18.13.1090" |
| 1119 }, |
| 1120 "features": [ |
| 1121 "accelerated_video_decode" |
| 1122 ] |
1040 } | 1123 } |
1041 ] | 1124 ] |
1042 } | 1125 } |
1043 | 1126 |
1044 ); // LONG_STRING_CONST macro | 1127 ); // LONG_STRING_CONST macro |
1045 | 1128 |
1046 } // namespace gpu | 1129 } // namespace gpu |
OLD | NEW |