| 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 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 "force_gl_finish_after_compositing" | 772 "force_gl_finish_after_compositing" |
| 773 ] | 773 ] |
| 774 }, | 774 }, |
| 775 { | 775 { |
| 776 "id": 68, | 776 "id": 68, |
| 777 "description": "Disable partial swaps on linux drivers", | 777 "description": "Disable partial swaps on linux drivers", |
| 778 "cr_bugs": [339493], | 778 "cr_bugs": [339493], |
| 779 "os": { | 779 "os": { |
| 780 "type": "linux" | 780 "type": "linux" |
| 781 }, | 781 }, |
| 782 "driver_vendor": "Mesa", |
| 782 "features": [ | 783 "features": [ |
| 783 "disable_post_sub_buffers_for_onscreen_surfaces" | 784 "disable_post_sub_buffers_for_onscreen_surfaces" |
| 784 ] | 785 ] |
| 785 }, | 786 }, |
| 786 { | 787 { |
| 787 "id": 69, | 788 "id": 69, |
| 788 "description": "Some shaders in Skia need more than the min available vert
ex and fragment shader uniform vectors in case of OSMesa", | 789 "description": "Some shaders in Skia need more than the min available vert
ex and fragment shader uniform vectors in case of OSMesa", |
| 789 "cr_bugs": [174845], | 790 "cr_bugs": [174845], |
| 790 "driver_vendor": "osmesa", | 791 "driver_vendor": "osmesa", |
| 791 "features": [ | 792 "features": [ |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1039 "features": [ | 1040 "features": [ |
| 1040 "etc1_power_of_two_only" | 1041 "etc1_power_of_two_only" |
| 1041 ] | 1042 ] |
| 1042 } | 1043 } |
| 1043 ] | 1044 ] |
| 1044 } | 1045 } |
| 1045 | 1046 |
| 1046 ); // LONG_STRING_CONST macro | 1047 ); // LONG_STRING_CONST macro |
| 1047 | 1048 |
| 1048 } // namespace gpu | 1049 } // namespace gpu |
| OLD | NEW |