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 a certain driver bug exists in the current system. | 5 // Determines whether a certain driver bug exists in the current system. |
6 // A valid gpu_driver_bug_list.json file are in the format of | 6 // A valid gpu_driver_bug_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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 | 78 |
79 #define LONG_STRING_CONST(...) #__VA_ARGS__ | 79 #define LONG_STRING_CONST(...) #__VA_ARGS__ |
80 | 80 |
81 namespace gpu { | 81 namespace gpu { |
82 | 82 |
83 const char kGpuDriverBugListJson[] = LONG_STRING_CONST( | 83 const char kGpuDriverBugListJson[] = LONG_STRING_CONST( |
84 | 84 |
85 { | 85 { |
86 "name": "gpu driver bug list", | 86 "name": "gpu driver bug list", |
87 // Please update the version number whenever you change this file. | 87 // Please update the version number whenever you change this file. |
88 "version": "2.7", | 88 "version": "2.8", |
89 "entries": [ | 89 "entries": [ |
90 { | 90 { |
91 "id": 1, | 91 "id": 1, |
92 "description": "Imagination driver doesn't like uploading lots of buffer d
ata constantly", | 92 "description": "Imagination driver doesn't like uploading lots of buffer d
ata constantly", |
93 "os": { | 93 "os": { |
94 "type": "android" | 94 "type": "android" |
95 }, | 95 }, |
96 "gl_vendor": { | 96 "gl_vendor": { |
97 "op": "beginwith", | 97 "op": "beginwith", |
98 "value": "Imagination" | 98 "value": "Imagination" |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
444 "os": { | 444 "os": { |
445 "type": "android" | 445 "type": "android" |
446 }, | 446 }, |
447 "gl_vendor": { | 447 "gl_vendor": { |
448 "op": "beginwith", | 448 "op": "beginwith", |
449 "value": "Qualcomm" | 449 "value": "Qualcomm" |
450 }, | 450 }, |
451 "features": [ | 451 "features": [ |
452 "disable_async_readpixels" | 452 "disable_async_readpixels" |
453 ] | 453 ] |
| 454 }, |
| 455 { |
| 456 "id": 30, |
| 457 "cr_bugs": [237931], |
| 458 "description": "Multisampling is buggy on OSX when multiple monitors are c
onnected", |
| 459 "os": { |
| 460 "type": "macosx" |
| 461 }, |
| 462 "features": [ |
| 463 "disable_multimonitor_multisampling" |
| 464 ] |
454 } | 465 } |
455 ] | 466 ] |
456 } | 467 } |
457 | 468 |
458 ); // LONG_STRING_CONST macro | 469 ); // LONG_STRING_CONST macro |
459 | 470 |
460 } // namespace gpu | 471 } // namespace gpu |
OLD | NEW |