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 // The format of a valid gpu_driver_bug_list.json file is defined in | 6 // The format of a valid gpu_driver_bug_list.json file is defined in |
7 // <gpu/config/gpu_control_list_format.txt>. | 7 // <gpu/config/gpu_control_list_format.txt>. |
8 // The supported "features" can be found in | 8 // The supported "features" can be found in |
9 // <gpu/config/gpu_driver_bug_workaround_type.h>. | 9 // <gpu/config/gpu_driver_bug_workaround_type.h>. |
10 | 10 |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 "description": "Multisampling is buggy on OSX when multiple monitors are c
onnected", | 389 "description": "Multisampling is buggy on OSX when multiple monitors are c
onnected", |
390 "os": { | 390 "os": { |
391 "type": "macosx" | 391 "type": "macosx" |
392 }, | 392 }, |
393 "features": [ | 393 "features": [ |
394 "disable_multimonitor_multisampling" | 394 "disable_multimonitor_multisampling" |
395 ] | 395 ] |
396 }, | 396 }, |
397 { | 397 { |
398 "id": 31, | 398 "id": 31, |
399 "cr_bugs": [154715, 10068, 269829], | 399 "cr_bugs": [154715, 10068, 269829, 294779], |
400 "description": "The Nexus 10 Mali driver does not guarantee flush ordering
.", | 400 "description": "The Mali T-6xx driver does not guarantee flush ordering.", |
401 "os": { | 401 "os": { |
402 "type": "android" | 402 "type": "android" |
403 }, | 403 }, |
404 "gl_vendor": { | 404 "gl_vendor": { |
405 "op": "beginwith", | 405 "op": "beginwith", |
406 "value": "ARM" | 406 "value": "ARM" |
407 }, | 407 }, |
408 "gl_renderer": { | 408 "gl_renderer": { |
409 "op": "contains", | 409 "op": "beginwith", |
410 "value": "Mali-T604" | 410 "value": "Mali-T6" |
411 }, | 411 }, |
412 "features": [ | 412 "features": [ |
413 "use_virtualized_gl_contexts" | 413 "use_virtualized_gl_contexts" |
414 ] | 414 ] |
415 }, | 415 }, |
416 { | 416 { |
417 "id": 32, | 417 "id": 32, |
418 "cr_bugs": [179815], | 418 "cr_bugs": [179815], |
419 "description": "Share groups are not working on (older?) Broadcom drivers.
", | 419 "description": "Share groups are not working on (older?) Broadcom drivers.
", |
420 "os": { | 420 "os": { |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
663 "features": [ | 663 "features": [ |
664 "force_discrete_gpu" | 664 "force_discrete_gpu" |
665 ] | 665 ] |
666 } | 666 } |
667 ] | 667 ] |
668 } | 668 } |
669 | 669 |
670 ); // LONG_STRING_CONST macro | 670 ); // LONG_STRING_CONST macro |
671 | 671 |
672 } // namespace gpu | 672 } // namespace gpu |
OLD | NEW |