| 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 2203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2214 ] | 2214 ] |
| 2215 }, | 2215 }, |
| 2216 { | 2216 { |
| 2217 "id": 205, | 2217 "id": 205, |
| 2218 "description": "Adreno 5xx support for EXT_multisampled_render_to_texture
is buggy on Android 7.1", | 2218 "description": "Adreno 5xx support for EXT_multisampled_render_to_texture
is buggy on Android 7.1", |
| 2219 "cr_bugs": [663811], | 2219 "cr_bugs": [663811], |
| 2220 "os": { | 2220 "os": { |
| 2221 "type": "android", | 2221 "type": "android", |
| 2222 "version": { | 2222 "version": { |
| 2223 "op": "=", | 2223 "op": "=", |
| 2224 "value": "7.1" | 2224 "value": "7.1.0" |
| 2225 } | 2225 } |
| 2226 }, | 2226 }, |
| 2227 "gl_renderer": "Adreno \\(TM\\) 5.*", | 2227 "gl_renderer": "Adreno \\(TM\\) 5.*", |
| 2228 "disabled_extensions": [ | 2228 "disabled_extensions": [ |
| 2229 "GL_EXT_multisampled_render_to_texture" | 2229 "GL_EXT_multisampled_render_to_texture" |
| 2230 ] | 2230 ] |
| 2231 }, | 2231 }, |
| 2232 { | 2232 { |
| 2233 "id": 206, | 2233 "id": 206, |
| 2234 "description": "Disable KHR_blend_equation_advanced until cc shaders are u
pdated", | 2234 "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... |
| 2335 ] | 2335 ] |
| 2336 } | 2336 } |
| 2337 ] | 2337 ] |
| 2338 // Please update the version number at beginning of this file whenever you | 2338 // Please update the version number at beginning of this file whenever you |
| 2339 // change this file. | 2339 // change this file. |
| 2340 } | 2340 } |
| 2341 | 2341 |
| 2342 ); // LONG_STRING_CONST macro | 2342 ); // LONG_STRING_CONST macro |
| 2343 | 2343 |
| 2344 } // namespace gpu | 2344 } // namespace gpu |
| OLD | NEW |