Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(359)

Side by Side Diff: gpu/config/gpu_driver_bug_list_json.cc

Issue 2347383002: X11: Use better visuals for OpenGL (Closed)
Patch Set: Fix --single-process Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1780 matching lines...) Expand 10 before | Expand all | Expand 10 after
1791 "0x161d", "0x161e", "0x1622", "0x1626", "0x162a", 1791 "0x161d", "0x161e", "0x1622", "0x1626", "0x162a",
1792 "0x162b", "0x162d", "0x162e", "0x22b0", "0x22b1", 1792 "0x162b", "0x162d", "0x162e", "0x22b0", "0x22b1",
1793 "0x22b2", "0x22b3"] 1793 "0x22b2", "0x22b3"]
1794 } 1794 }
1795 ], 1795 ],
1796 "features": [ 1796 "features": [
1797 "disable_framebuffer_cmaa" 1797 "disable_framebuffer_cmaa"
1798 ] 1798 ]
1799 }, 1799 },
1800 { 1800 {
1801 "id": 173,
1802 "description": "Limit transparent visuals to drivers known to work",
1803 "cr_bugs": [369209],
1804 "os": {
1805 "type": "linux"
1806 },
1807 "exceptions" : [
1808 {
1809 "driver_vendor": "Mesa"
1810 }
1811 ],
1812 "features": [
1813 "disable_transparent_visuals"
1814 ]
1815 },
1816 {
Julien Isorce Samsung 2016/09/28 17:42:51 You need to bump the "version" on top of this file
Tom (Use chromium acct) 2016/09/28 18:36:01 Done.
1817 "id": 174, 1801 "id": 174,
1818 "description": "Adreno 4xx support for EXT_multisampled_render_to_texture is buggy on Android 7.0", 1802 "description": "Adreno 4xx support for EXT_multisampled_render_to_texture is buggy on Android 7.0",
1819 "cr_bugs": [612474], 1803 "cr_bugs": [612474],
1820 "os": { 1804 "os": {
1821 "type": "android", 1805 "type": "android",
1822 "version": { 1806 "version": {
1823 "op": "between", 1807 "op": "between",
1824 "value": "7.0.0", 1808 "value": "7.0.0",
1825 "value2": "7.0.99" 1809 "value2": "7.0.99"
1826 // Only initial version of N. 1810 // Only initial version of N.
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
2032 ] 2016 ]
2033 } 2017 }
2034 ] 2018 ]
2035 // Please update the version number at beginning of this file whenever you 2019 // Please update the version number at beginning of this file whenever you
2036 // change this file. 2020 // change this file.
2037 } 2021 }
2038 2022
2039 ); // LONG_STRING_CONST macro 2023 ); // LONG_STRING_CONST macro
2040 2024
2041 } // namespace gpu 2025 } // namespace gpu
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698