| 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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 "cr_bugs": [243038], | 349 "cr_bugs": [243038], |
| 350 "description": "Disable OES_standard_derivative on Intel Pineview M Galliu
m drivers.", | 350 "description": "Disable OES_standard_derivative on Intel Pineview M Galliu
m drivers.", |
| 351 "os": { | 351 "os": { |
| 352 "type": "chromeos" | 352 "type": "chromeos" |
| 353 }, | 353 }, |
| 354 "vendor_id": "0x8086", | 354 "vendor_id": "0x8086", |
| 355 "device_id": ["0xa011", "0xa012"], | 355 "device_id": ["0xa011", "0xa012"], |
| 356 "features": [ | 356 "features": [ |
| 357 "disable_oes_standard_derivatives" | 357 "disable_oes_standard_derivatives" |
| 358 ] | 358 ] |
| 359 }, |
| 360 { |
| 361 "id": 24, |
| 362 "cr_bugs": [231082], |
| 363 "description": "Mali-400 drivers throw an error when a buffer object's siz
e is set to 0.", |
| 364 "os": { |
| 365 "type": "android" |
| 366 }, |
| 367 "gl_vendor": { |
| 368 "op": "beginwith", |
| 369 "value": "ARM" |
| 370 }, |
| 371 "gl_renderer": { |
| 372 "op": "contains", |
| 373 "value": "Mali-400" |
| 374 }, |
| 375 "features": [ |
| 376 "use_non_zero_size_for_client_side_stream_buffers" |
| 377 ] |
| 359 } | 378 } |
| 360 ] | 379 ] |
| 361 } | 380 } |
| 362 | 381 |
| 363 ); // LONG_STRING_CONST macro | 382 ); // LONG_STRING_CONST macro |
| 364 | 383 |
| 365 } // namespace gpu | 384 } // namespace gpu |
| 366 | 385 |
| OLD | NEW |