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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 "op": "beginwith", | 368 "op": "beginwith", |
369 "value": "ARM" | 369 "value": "ARM" |
370 }, | 370 }, |
371 "gl_renderer": { | 371 "gl_renderer": { |
372 "op": "contains", | 372 "op": "contains", |
373 "value": "Mali-400" | 373 "value": "Mali-400" |
374 }, | 374 }, |
375 "features": [ | 375 "features": [ |
376 "use_non_zero_size_for_client_side_stream_buffers" | 376 "use_non_zero_size_for_client_side_stream_buffers" |
377 ] | 377 ] |
| 378 }, |
| 379 { |
| 380 "id": 25, |
| 381 "cr_bugs": [152225], |
| 382 "description": |
| 383 "Intel OSX drivers prior to mountain lion crashes when using PBOs", |
| 384 "os": { |
| 385 "type": "macosx", |
| 386 "version": { |
| 387 "op": "<", |
| 388 "number": "10.8" |
| 389 } |
| 390 }, |
| 391 "vendor_id": "0x8086", |
| 392 "features": [ |
| 393 "disable_async_readpixels" |
| 394 ] |
378 } | 395 } |
379 ] | 396 ] |
380 } | 397 } |
381 | 398 |
382 ); // LONG_STRING_CONST macro | 399 ); // LONG_STRING_CONST macro |
383 | 400 |
384 } // namespace gpu | 401 } // namespace gpu |
385 | |
OLD | NEW |