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 1368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1379 "version": { | 1379 "version": { |
1380 "op": "<", | 1380 "op": "<", |
1381 "value": "5.1" | 1381 "value": "5.1" |
1382 } | 1382 } |
1383 }, | 1383 }, |
1384 "gl_vendor": "Qualcomm.*", | 1384 "gl_vendor": "Qualcomm.*", |
1385 "gl_renderer": ".*420", | 1385 "gl_renderer": ".*420", |
1386 "features": [ | 1386 "features": [ |
1387 "disable_multisampled_render_to_texture" | 1387 "disable_multisampled_render_to_texture" |
1388 ] | 1388 ] |
| 1389 }, |
| 1390 { |
| 1391 "id": 117, |
| 1392 "description": "GL_KHR_blend_equation_advanced breaks blending on Adreno 4
xx", |
| 1393 "cr_bugs": [488485], |
| 1394 "os": { |
| 1395 "type": "android" |
| 1396 }, |
| 1397 "gl_vendor": "Qualcomm.*", |
| 1398 "gl_renderer": ".*4\\d\\d", |
| 1399 "features": [ |
| 1400 "disable_blend_equation_advanced" |
| 1401 ] |
1389 } | 1402 } |
1390 ] | 1403 ] |
1391 } | 1404 } |
1392 | 1405 |
1393 ); // LONG_STRING_CONST macro | 1406 ); // LONG_STRING_CONST macro |
1394 | 1407 |
1395 } // namespace gpu | 1408 } // namespace gpu |
OLD | NEW |