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

Side by Side Diff: gpu/config/software_rendering_list_json.cc

Issue 60633006: Correct blacklist entry message (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 // 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 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after
1115 } 1115 }
1116 }, 1116 },
1117 "vendor_id": "0x10de", 1117 "vendor_id": "0x10de",
1118 "device_id": ["0x0429", "0x042b"], 1118 "device_id": ["0x0429", "0x042b"],
1119 "features": [ 1119 "features": [
1120 "multisampling" 1120 "multisampling"
1121 ] 1121 ]
1122 }, 1122 },
1123 { 1123 {
1124 "id": 78, 1124 "id": 78,
1125 "description": "Accelerated video decode interferes with GPU blacklist on older Intel drivers", 1125 "description": "Accelerated video decode interferes with GPU sandbox on ol der Intel drivers",
1126 "cr_bugs": [180695], 1126 "cr_bugs": [180695],
1127 "os": { 1127 "os": {
1128 "type": "win" 1128 "type": "win"
1129 }, 1129 },
1130 "vendor_id": "0x8086", 1130 "vendor_id": "0x8086",
1131 "driver_version": { 1131 "driver_version": {
1132 "op": "between", 1132 "op": "between",
1133 "value": "8.15.10.1883", 1133 "value": "8.15.10.1883",
1134 "value2": "8.15.10.2702" 1134 "value2": "8.15.10.2702"
1135 }, 1135 },
(...skipping 28 matching lines...) Expand all
1164 "features": [ 1164 "features": [
1165 "texture_sharing" 1165 "texture_sharing"
1166 ] 1166 ]
1167 } 1167 }
1168 ] 1168 ]
1169 } 1169 }
1170 1170
1171 ); // LONG_STRING_CONST macro 1171 ); // LONG_STRING_CONST macro
1172 1172
1173 } // namespace gpu 1173 } // namespace gpu
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