| 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 2194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2205 "op": "=", | 2205 "op": "=", |
| 2206 "value": "3.3" | 2206 "value": "3.3" |
| 2207 }, | 2207 }, |
| 2208 "features": [ | 2208 "features": [ |
| 2209 "remove_invariant_and_centroid_for_essl3" | 2209 "remove_invariant_and_centroid_for_essl3" |
| 2210 ] | 2210 ] |
| 2211 }, | 2211 }, |
| 2212 { | 2212 { |
| 2213 "id": 204, | 2213 "id": 204, |
| 2214 "cr_bugs": [665656], | 2214 "cr_bugs": [665656], |
| 2215 "description": "Hardware readback from 2D canvas flaky on Mac Intel", | 2215 "description": "Hardware readback from 2D canvas to WebGL texture is flaky
on Mac Intel", |
| 2216 "os": { | 2216 "os": { |
| 2217 "type": "macosx" | 2217 "type": "macosx" |
| 2218 }, | 2218 }, |
| 2219 "vendor_id": "0x8086", | 2219 "vendor_id": "0x8086", |
| 2220 "features": [ | 2220 "features": [ |
| 2221 "force_software_readback_from_2d_canvas" | 2221 "force_software_readback_from_2d_canvas" |
| 2222 ] | 2222 ] |
| 2223 } | 2223 } |
| 2224 ] | 2224 ] |
| 2225 // Please update the version number at beginning of this file whenever you | 2225 // Please update the version number at beginning of this file whenever you |
| 2226 // change this file. | 2226 // change this file. |
| 2227 } | 2227 } |
| 2228 | 2228 |
| 2229 ); // LONG_STRING_CONST macro | 2229 ); // LONG_STRING_CONST macro |
| 2230 | 2230 |
| 2231 } // namespace gpu | 2231 } // namespace gpu |
| OLD | NEW |