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

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

Issue 2376033004: Add isnan() workaround for Intel Mac (Closed)
Patch Set: Rebase 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 2009 matching lines...) Expand 10 before | Expand all | Expand 10 after
2020 "description": "Disable partial swaps on Mesa drivers (detected with GL_VE RSION)", 2020 "description": "Disable partial swaps on Mesa drivers (detected with GL_VE RSION)",
2021 "cr_bugs": [339493], 2021 "cr_bugs": [339493],
2022 "os": { 2022 "os": {
2023 "type": "linux" 2023 "type": "linux"
2024 }, 2024 },
2025 "gl_type": "gl", 2025 "gl_type": "gl",
2026 "gl_version_string": ".*Mesa.*", 2026 "gl_version_string": ".*Mesa.*",
2027 "features": [ 2027 "features": [
2028 "disable_post_sub_buffers_for_onscreen_surfaces" 2028 "disable_post_sub_buffers_for_onscreen_surfaces"
2029 ] 2029 ]
2030 },
2031 {
2032 "id": 191,
2033 "description": "Emulate GLSL function isnan() on Intel Mac",
2034 "cr_bugs": [650547],
2035 "os": {
2036 "type": "macosx"
2037 },
2038 "vendor_id": "0x8086",
2039 "device_id" : [
2040 "0x1902", "0x1906", "0x190A", "0x190B", "0x190E", "0x1912", "0x1913", "0 x1915",
2041 "0x1916", "0x1917", "0x191A", "0x191B", "0x191D", "0x191E", "0x1921", "0 x1923",
2042 "0x1926", "0x1927", "0x192A", "0x192B", "0x192D", "0x1932", "0x193A", "0 x193B",
2043 "0x193D"
2044 ],
2045 "features" : [
2046 "emulate_isnan_on_float"
2047 ]
2030 } 2048 }
2031 ] 2049 ]
2032 // Please update the version number at beginning of this file whenever you 2050 // Please update the version number at beginning of this file whenever you
2033 // change this file. 2051 // change this file.
2034 } 2052 }
2035 2053
2036 ); // LONG_STRING_CONST macro 2054 ); // LONG_STRING_CONST macro
2037 2055
2038 } // namespace gpu 2056 } // namespace gpu
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder.cc ('k') | gpu/config/gpu_driver_bug_workaround_type.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698