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": "Intel OSX drivers prior to mountain lion crashes when usin
g PBOs", |
| 383 "os": { |
| 384 "type": "macosx" |
| 385 "version": { |
| 386 "op": "<", |
| 387 "number": "10.8" |
| 388 } |
| 389 }, |
| 390 "vendor_id": "0x8086", |
| 391 "features": [ |
| 392 "disable_async_readpixels" |
| 393 ] |
378 } | 394 } |
379 ] | 395 ] |
380 } | 396 } |
381 | 397 |
382 ); // LONG_STRING_CONST macro | 398 ); // LONG_STRING_CONST macro |
383 | 399 |
384 } // namespace gpu | 400 } // namespace gpu |
385 | |
OLD | NEW |