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

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

Issue 1081533003: ui: Enable virtual contexts for linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use unmapped window for the offscreen surfaces Created 5 years, 8 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
« no previous file with comments | « no previous file | ui/gl/gl_surface_glx.h » ('j') | ui/gl/gl_surface_glx.cc » ('J')
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
(...skipping 1199 matching lines...) Expand 10 before | Expand all | Expand 10 after
1210 "id": 105, 1210 "id": 105,
1211 "cr_bugs": [449488,451230], 1211 "cr_bugs": [449488,451230],
1212 "description": "Framebuffer discarding causes corruption on Mali-4xx", 1212 "description": "Framebuffer discarding causes corruption on Mali-4xx",
1213 "gl_renderer": "Mali-4.*", 1213 "gl_renderer": "Mali-4.*",
1214 "os": { 1214 "os": {
1215 "type": "android" 1215 "type": "android"
1216 }, 1216 },
1217 "features": [ 1217 "features": [
1218 "disable_discard_framebuffer" 1218 "disable_discard_framebuffer"
1219 ] 1219 ]
1220 },
1221 {
1222 "id": 106,
1223 "description": "MakeCurrent is slow on Linux",
1224 "os": {
1225 "type": "linux"
1226 },
1227 "features": [
1228 "use_virtualized_gl_contexts"
1229 ]
1220 } 1230 }
1221 ] 1231 ]
1222 } 1232 }
1223 1233
1224 ); // LONG_STRING_CONST macro 1234 ); // LONG_STRING_CONST macro
1225 1235
1226 } // namespace gpu 1236 } // namespace gpu
OLDNEW
« no previous file with comments | « no previous file | ui/gl/gl_surface_glx.h » ('j') | ui/gl/gl_surface_glx.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698