| 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 2196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2207 ] | 2207 ] |
| 2208 }, | 2208 }, |
| 2209 { | 2209 { |
| 2210 "id": 205, | 2210 "id": 205, |
| 2211 "description": "Adreno 5xx support for EXT_multisampled_render_to_texture
is buggy on Android 7.1", | 2211 "description": "Adreno 5xx support for EXT_multisampled_render_to_texture
is buggy on Android 7.1", |
| 2212 "cr_bugs": [663811], | 2212 "cr_bugs": [663811], |
| 2213 "os": { | 2213 "os": { |
| 2214 "type": "android", | 2214 "type": "android", |
| 2215 "version": { | 2215 "version": { |
| 2216 "op": "=", | 2216 "op": "=", |
| 2217 "value": "7.1" | 2217 "value": "7.1.0" |
| 2218 } | 2218 } |
| 2219 }, | 2219 }, |
| 2220 "gl_renderer": "Adreno \\(TM\\) 5.*", | 2220 "gl_renderer": "Adreno \\(TM\\) 5.*", |
| 2221 "disabled_extensions": [ | 2221 "disabled_extensions": [ |
| 2222 "GL_EXT_multisampled_render_to_texture" | 2222 "GL_EXT_multisampled_render_to_texture" |
| 2223 ] | 2223 ] |
| 2224 }, | 2224 }, |
| 2225 { | 2225 { |
| 2226 "id": 206, | 2226 "id": 206, |
| 2227 "description": "Disable KHR_blend_equation_advanced until cc shaders are u
pdated", | 2227 "description": "Disable KHR_blend_equation_advanced until cc shaders are u
pdated", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2328 ] | 2328 ] |
| 2329 } | 2329 } |
| 2330 ] | 2330 ] |
| 2331 // Please update the version number at beginning of this file whenever you | 2331 // Please update the version number at beginning of this file whenever you |
| 2332 // change this file. | 2332 // change this file. |
| 2333 } | 2333 } |
| 2334 | 2334 |
| 2335 ); // LONG_STRING_CONST macro | 2335 ); // LONG_STRING_CONST macro |
| 2336 | 2336 |
| 2337 } // namespace gpu | 2337 } // namespace gpu |
| OLD | NEW |