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

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

Issue 18402006: Disable texture sharing on AMD switchable via the blacklist. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update version # Created 7 years, 5 months 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 | « content/browser/gpu/gpu_data_manager_impl_private.cc ('k') | 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 // A valid software_rendering_list.json file are in the format of 6 // A valid software_rendering_list.json file are in the format of
7 // { 7 // {
8 // "version": "x.y", 8 // "version": "x.y",
9 // "entries": [ 9 // "entries": [
10 // { // entry 1 10 // { // entry 1
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 81
82 #define LONG_STRING_CONST(...) #__VA_ARGS__ 82 #define LONG_STRING_CONST(...) #__VA_ARGS__
83 83
84 namespace gpu { 84 namespace gpu {
85 85
86 const char kSoftwareRenderingListJson[] = LONG_STRING_CONST( 86 const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
87 87
88 { 88 {
89 "name": "software rendering list", 89 "name": "software rendering list",
90 // Please update the version number whenever you change this file. 90 // Please update the version number whenever you change this file.
91 "version": "6.3", 91 "version": "6.4",
92 "entries": [ 92 "entries": [
93 { 93 {
94 "id": 1, 94 "id": 1,
95 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , 95 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." ,
96 "webkit_bugs": [47028], 96 "webkit_bugs": [47028],
97 "os": { 97 "os": {
98 "type": "macosx" 98 "type": "macosx"
99 }, 99 },
100 "vendor_id": "0x1002", 100 "vendor_id": "0x1002",
101 "device_id": ["0x7249"], 101 "device_id": ["0x7249"],
(...skipping 1018 matching lines...) Expand 10 before | Expand all | Expand 10 after
1120 "os": { 1120 "os": {
1121 "type": "win" 1121 "type": "win"
1122 }, 1122 },
1123 "driver_vendor": { 1123 "driver_vendor": {
1124 "op": "=", 1124 "op": "=",
1125 "value": "Microsoft" 1125 "value": "Microsoft"
1126 }, 1126 },
1127 "features": [ 1127 "features": [
1128 "all" 1128 "all"
1129 ] 1129 ]
1130 },
1131 {
1132 "id": 75,
1133 "description": "Texture sharing not supported on AMD Switchable GPUs due t o driver issues",
1134 "cr_bugs": [117371],
1135 "os": {
1136 "type": "win"
1137 },
1138 "multi_gpu_style": "amd_switchable",
1139 "features": [
1140 "texture_sharing"
1141 ]
1130 } 1142 }
1131 ] 1143 ]
1132 } 1144 }
1133 1145
1134 ); // LONG_STRING_CONST macro 1146 ); // LONG_STRING_CONST macro
1135 1147
1136 } // namespace gpu 1148 } // namespace gpu
1137 1149
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_data_manager_impl_private.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698