| 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 1736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1747 { | 1747 { |
| 1748 "id": 164, | 1748 "id": 164, |
| 1749 "cr_bugs": [595948], | 1749 "cr_bugs": [595948], |
| 1750 "description": "glColorMask does not work for multisample renderbuffers on
old AMD GPUs.", | 1750 "description": "glColorMask does not work for multisample renderbuffers on
old AMD GPUs.", |
| 1751 "os": { | 1751 "os": { |
| 1752 "type": "macosx" | 1752 "type": "macosx" |
| 1753 }, | 1753 }, |
| 1754 "vendor_id": "0x1002", | 1754 "vendor_id": "0x1002", |
| 1755 "device_id": ["0x68b8"], | 1755 "device_id": ["0x68b8"], |
| 1756 "features": [ | 1756 "features": [ |
| 1757 "disable_webgl_multisampling_color_mask_usage" | 1757 "disable_multisampling_color_mask_usage" |
| 1758 ] | 1758 ] |
| 1759 }, | 1759 }, |
| 1760 { | 1760 { |
| 1761 "id": 165, | 1761 "id": 165, |
| 1762 "cr_bugs": [596774], | 1762 "cr_bugs": [596774], |
| 1763 "description": "Unpacking overlapping rows from unpack buffers is unstable
on NVIDIA GL driver", | 1763 "description": "Unpacking overlapping rows from unpack buffers is unstable
on NVIDIA GL driver", |
| 1764 "gl_vendor": "NVIDIA.*", | 1764 "gl_vendor": "NVIDIA.*", |
| 1765 "features": [ | 1765 "features": [ |
| 1766 "unpack_overlapping_rows_separately_unpack_buffer" | 1766 "unpack_overlapping_rows_separately_unpack_buffer" |
| 1767 ] | 1767 ] |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1857 "features": [ | 1857 "features": [ |
| 1858 "disable_framebuffer_cmaa" | 1858 "disable_framebuffer_cmaa" |
| 1859 ] | 1859 ] |
| 1860 } | 1860 } |
| 1861 ] | 1861 ] |
| 1862 } | 1862 } |
| 1863 | 1863 |
| 1864 ); // LONG_STRING_CONST macro | 1864 ); // LONG_STRING_CONST macro |
| 1865 | 1865 |
| 1866 } // namespace gpu | 1866 } // namespace gpu |
| OLD | NEW |