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

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

Issue 23620028: Added WebGL blacklist entry for the AMD 6970M (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Version bump to avoid conflict Created 7 years, 3 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 | « 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 // 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 82
83 #define LONG_STRING_CONST(...) #__VA_ARGS__ 83 #define LONG_STRING_CONST(...) #__VA_ARGS__
84 84
85 namespace gpu { 85 namespace gpu {
86 86
87 const char kSoftwareRenderingListJson[] = LONG_STRING_CONST( 87 const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
88 88
89 { 89 {
90 "name": "software rendering list", 90 "name": "software rendering list",
91 // Please update the version number whenever you change this file. 91 // Please update the version number whenever you change this file.
92 "version": "6.7", 92 "version": "6.8",
93 "entries": [ 93 "entries": [
94 { 94 {
95 "id": 1, 95 "id": 1,
96 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , 96 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." ,
97 "webkit_bugs": [47028], 97 "webkit_bugs": [47028],
98 "os": { 98 "os": {
99 "type": "macosx" 99 "type": "macosx"
100 }, 100 },
101 "vendor_id": "0x1002", 101 "vendor_id": "0x1002",
102 "device_id": ["0x7249"], 102 "device_id": ["0x7249"],
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 "op": "=", 597 "op": "=",
598 "number": "5" 598 "number": "5"
599 } 599 }
600 }, 600 },
601 "features": [ 601 "features": [
602 "flash_3d" 602 "flash_3d"
603 ] 603 ]
604 }, 604 },
605 { 605 {
606 "id": 42, 606 "id": 42,
607 "description": "AMD Radeon HD 6490M on Snow Leopard is buggy.", 607 "description": "AMD Radeon HD 6490M and 6970M on Snow Leopard are buggy.",
608 "cr_bugs": [137307], 608 "cr_bugs": [137307, 285350],
609 "os": { 609 "os": {
610 "type": "macosx", 610 "type": "macosx",
611 "version": { 611 "version": {
612 "op": "=", 612 "op": "=",
613 "number": "10.6" 613 "number": "10.6"
614 } 614 }
615 }, 615 },
616 "vendor_id": "0x1002", 616 "vendor_id": "0x1002",
617 "device_id": ["0x6760"], 617 "device_id": ["0x6760", "0x6720"],
618 "features": [ 618 "features": [
619 "webgl" 619 "webgl"
620 ] 620 ]
621 }, 621 },
622 { 622 {
623 "id": 43, 623 "id": 43,
624 "description": "Intel driver version 8.15.10.1749 has problems sharing tex tures.", 624 "description": "Intel driver version 8.15.10.1749 has problems sharing tex tures.",
625 "cr_bugs": [133924], 625 "cr_bugs": [133924],
626 "os": { 626 "os": {
627 "type": "win" 627 "type": "win"
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
1163 "multisampling" 1163 "multisampling"
1164 ] 1164 ]
1165 } 1165 }
1166 ] 1166 ]
1167 } 1167 }
1168 1168
1169 ); // LONG_STRING_CONST macro 1169 ); // LONG_STRING_CONST macro
1170 1170
1171 } // namespace gpu 1171 } // namespace gpu
1172 1172
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