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

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

Issue 2447233003: Better document ES3 MSAA driver bug workaround for Qualcomm GPUs. (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 | no next file » | 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
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 "os": { 412 "os": {
413 "type": "win" 413 "type": "win"
414 }, 414 },
415 "gl_renderer": "ANGLE.*", 415 "gl_renderer": "ANGLE.*",
416 "features": [ 416 "features": [
417 "texsubimage_faster_than_teximage" 417 "texsubimage_faster_than_teximage"
418 ] 418 ]
419 }, 419 },
420 { 420 {
421 "id": 52, 421 "id": 52,
422 "cr_bugs": [449116, 471200, 612474],
422 "description": "ES3 MSAA is broken on Qualcomm", 423 "description": "ES3 MSAA is broken on Qualcomm",
423 "os": { 424 "os": {
424 "type": "android" 425 "type": "android"
425 }, 426 },
426 "gl_vendor": "Qualcomm.*", 427 "gl_vendor": "Qualcomm.*",
427 "features": [ 428 "features": [
428 "disable_chromium_framebuffer_multisample" 429 "disable_chromium_framebuffer_multisample"
429 ] 430 ]
430 }, 431 },
431 { 432 {
(...skipping 1738 matching lines...) Expand 10 before | Expand all | Expand 10 after
2170 ] 2171 ]
2171 } 2172 }
2172 ] 2173 ]
2173 // Please update the version number at beginning of this file whenever you 2174 // Please update the version number at beginning of this file whenever you
2174 // change this file. 2175 // change this file.
2175 } 2176 }
2176 2177
2177 ); // LONG_STRING_CONST macro 2178 ); // LONG_STRING_CONST macro
2178 2179
2179 } // namespace gpu 2180 } // namespace gpu
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698