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

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

Issue 2486493002: Don't use OpenGL context versions between 3.0 and 3.2 on Mesa. (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « no previous file | ui/gl/gl_context_glx.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
11 #include "gpu/config/gpu_control_list_jsons.h" 11 #include "gpu/config/gpu_control_list_jsons.h"
12 12
13 #define LONG_STRING_CONST(...) #__VA_ARGS__ 13 #define LONG_STRING_CONST(...) #__VA_ARGS__
14 14
15 namespace gpu { 15 namespace gpu {
16 16
17 const char kGpuDriverBugListJson[] = LONG_STRING_CONST( 17 const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
18 18
19 { 19 {
20 "name": "gpu driver bug list", 20 "name": "gpu driver bug list",
21 // Please update the version number whenever you change this file. 21 // Please update the version number whenever you change this file.
22 "version": "9.14", 22 "version": "9.15",
23 "entries": [ 23 "entries": [
24 { 24 {
25 "id": 1, 25 "id": 1,
26 "description": "Imagination driver doesn't like uploading lots of buffer d ata constantly", 26 "description": "Imagination driver doesn't like uploading lots of buffer d ata constantly",
27 "os": { 27 "os": {
28 "type": "android" 28 "type": "android"
29 }, 29 },
30 "gl_vendor": "Imagination.*", 30 "gl_vendor": "Imagination.*",
31 "features": [ 31 "features": [
32 "use_client_side_arrays_for_stream_buffers" 32 "use_client_side_arrays_for_stream_buffers"
(...skipping 1998 matching lines...) Expand 10 before | Expand all | Expand 10 after
2031 "os": { 2031 "os": {
2032 "type": "android", 2032 "type": "android",
2033 "version": { 2033 "version": {
2034 "op": "<", 2034 "op": "<",
2035 "value": "4.4" 2035 "value": "4.4"
2036 } 2036 }
2037 }, 2037 },
2038 "features": [ 2038 "features": [
2039 "disable_es3_gl_context" 2039 "disable_es3_gl_context"
2040 ] 2040 ]
2041 },
2042 {
2043 "id": 192,
2044 "cr_bugs": [659030],
2045 "description": "Don't create highest GL context possible on old Mesa / HW combos (intel part)",
2046 "os": {
2047 "type": "linux"
2048 },
2049 "driver_vendor": "Mesa",
2050 "driver_version": {
2051 "op": "<",
2052 "value": "11"
2053 },
2054 "vendor_id": "0x8086",
2055 "device_id": ["0x0102", "0x0116", "0x0126", "0x0166"],
2056 "features": [
2057 "create_default_gl_context"
2058 ]
2059 },
2060 {
2061 "id": 193,
2062 "cr_bugs": [659030],
2063 "description": "Don't create highest GL context possible on old Mesa / HW combos (AMD part)",
2064 "os": {
2065 "type": "linux"
2066 },
2067 "driver_vendor": "Mesa",
2068 "driver_version": {
2069 "op": "<",
2070 "value": "11"
2071 },
2072 "vendor_id": "0x1002",
2073 "device_id": ["0x9832"],
2074 "features": [
2075 "create_default_gl_context"
2076 ]
2077 } 2041 }
2078 ] 2042 ]
2079 // Please update the version number at beginning of this file whenever you 2043 // Please update the version number at beginning of this file whenever you
2080 // change this file. 2044 // change this file.
2081 } 2045 }
2082 2046
2083 ); // LONG_STRING_CONST macro 2047 ); // LONG_STRING_CONST macro
2084 2048
2085 } // namespace gpu 2049 } // namespace gpu
OLDNEW
« no previous file with comments | « no previous file | ui/gl/gl_context_glx.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698