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

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

Issue 23503038: Make using virtual contexts a workaround flag rather than cmdline (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comment 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 | « content/public/common/content_switches.cc ('k') | gpu/config/gpu_driver_bug_workaround_type.h » ('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 // 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 78
79 #define LONG_STRING_CONST(...) #__VA_ARGS__ 79 #define LONG_STRING_CONST(...) #__VA_ARGS__
80 80
81 namespace gpu { 81 namespace gpu {
82 82
83 const char kGpuDriverBugListJson[] = LONG_STRING_CONST( 83 const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
84 84
85 { 85 {
86 "name": "gpu driver bug list", 86 "name": "gpu driver bug list",
87 // Please update the version number whenever you change this file. 87 // Please update the version number whenever you change this file.
88 "version": "2.8", 88 "version": "2.9",
89 "entries": [ 89 "entries": [
90 { 90 {
91 "id": 1, 91 "id": 1,
92 "description": "Imagination driver doesn't like uploading lots of buffer d ata constantly", 92 "description": "Imagination driver doesn't like uploading lots of buffer d ata constantly",
93 "os": { 93 "os": {
94 "type": "android" 94 "type": "android"
95 }, 95 },
96 "gl_vendor": { 96 "gl_vendor": {
97 "op": "beginwith", 97 "op": "beginwith",
98 "value": "Imagination" 98 "value": "Imagination"
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 { 455 {
456 "id": 30, 456 "id": 30,
457 "cr_bugs": [237931], 457 "cr_bugs": [237931],
458 "description": "Multisampling is buggy on OSX when multiple monitors are c onnected", 458 "description": "Multisampling is buggy on OSX when multiple monitors are c onnected",
459 "os": { 459 "os": {
460 "type": "macosx" 460 "type": "macosx"
461 }, 461 },
462 "features": [ 462 "features": [
463 "disable_multimonitor_multisampling" 463 "disable_multimonitor_multisampling"
464 ] 464 ]
465 },
466 {
467 "id": 31,
468 "cr_bugs": [154715, 10068, 269829],
469 "description": "The Nexus 10 Mali driver does not guarantee flush ordering .",
470 "os": {
471 "type": "android"
472 },
473 "gl_vendor": {
474 "op": "beginwith",
475 "value": "ARM"
476 },
477 "gl_renderer": {
478 "op": "contains",
479 "value": "Mali-T604"
480 },
481 "features": [
482 "use_virtualized_gl_contexts"
483 ]
484 },
485 {
486 "id": 32,
487 "cr_bugs": [179815],
488 "description": "Share groups are not working on (older?) Broadcom drivers. ",
489 "os": {
490 "type": "android"
491 },
492 "gl_vendor": {
493 "op": "beginwith",
494 "value": "Broadcom"
495 },
496 "features": [
497 "use_virtualized_gl_contexts"
498 ]
499 },
500 {
501 "id": 33,
502 "description": "Share group-related crashes and poor context switching per f on Galaxy Nexus.",
503 "os": {
504 "type": "android"
505 },
506 "gl_vendor": {
507 "op": "beginwith",
508 "value": "Imagination"
509 },
510 "features": [
511 "use_virtualized_gl_contexts"
512 ]
513 },
514 {
515 "id": 34,
516 "cr_bugs": [179250, 229643, 230896],
517 "description": "Share groups are not working on (older?) Vivante drivers." ,
518 "os": {
519 "type": "android"
520 },
521 "gl_extensions": {
522 "op": "contains",
523 "value": "GL_VIV_shader_binary"
524 },
525 "features": [
526 "use_virtualized_gl_contexts"
527 ]
528 },
529 {
530 "id": 35,
531 "cr_bugs": [163464],
532 "description": "Share-group related crashes on older NVIDIA drivers.",
533 "os": {
534 "type": "android",
535 "version": {
536 "op": "<",
537 "number": "4.3"
538 }
539 },
540 "gl_vendor": {
541 "op": "beginwith",
542 "value": "NVIDIA"
543 },
544 "features": [
545 "use_virtualized_gl_contexts"
546 ]
547 },
548 {
549 "id": 36,
550 "cr_bugs": [163464, 233612],
551 "description": "Share-group related crashes on Qualcomm drivers.",
552 "os": {
553 "type": "android",
554 "version": {
555 "op": "<",
556 "number": "4.3"
557 }
558 },
559 "gl_vendor": {
560 "op": "beginwith",
561 "value": "Qualcomm"
562 },
563 "features": [
564 "use_virtualized_gl_contexts"
565 ]
465 } 566 }
466 ] 567 ]
467 } 568 }
468 569
469 ); // LONG_STRING_CONST macro 570 ); // LONG_STRING_CONST macro
470 571
471 } // namespace gpu 572 } // namespace gpu
OLDNEW
« no previous file with comments | « content/public/common/content_switches.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