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

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

Issue 23694038: Revert 223064 "Merge 222769 "gpu: Re-enable virtual contexts on ..." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1599/src/
Patch Set: Created 7 years, 3 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 | Annotate | Revision Log
« 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 // A valid gpu_driver_bug_list.json file are in the format of 6 // A valid gpu_driver_bug_list.json file are in the format of
7 // { 7 // {
8 // "version": "x.y", 8 // "version": "x.y",
9 // "entries": [ 9 // "entries": [
10 // { // entry 1 10 // { // entry 1
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 { 429 {
430 "id": 28, 430 "id": 28,
431 "cr_bugs": [277817], 431 "cr_bugs": [277817],
432 "description": "Disable use of ANGLE_instanced_arrays on Windows", 432 "description": "Disable use of ANGLE_instanced_arrays on Windows",
433 "os": { 433 "os": {
434 "type": "win" 434 "type": "win"
435 }, 435 },
436 "features": [ 436 "features": [
437 "disable_angle_instanced_arrays" 437 "disable_angle_instanced_arrays"
438 ] 438 ]
439 },
440 {
441 "id": 38,
442 "cr_bugs": [289461],
443 "description": "Non-virtual contexts on Qualcomm sometimes cause out-of-or der frames",
444 "os": {
445 "type": "android"
446 },
447 "gl_vendor": {
448 "op": "beginwith",
449 "value": "Qualcomm"
450 },
451 "features": [
452 "use_virtualized_gl_contexts"
453 ]
454 } 439 }
455 ] 440 ]
456 } 441 }
457 442
458 ); // LONG_STRING_CONST macro 443 ); // LONG_STRING_CONST macro
459 444
460 } // namespace gpu 445 } // 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