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

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

Issue 64173010: Re-enable virtual contexts for all ARM T-6XX models. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 "description": "Multisampling is buggy on OSX when multiple monitors are c onnected", 389 "description": "Multisampling is buggy on OSX when multiple monitors are c onnected",
390 "os": { 390 "os": {
391 "type": "macosx" 391 "type": "macosx"
392 }, 392 },
393 "features": [ 393 "features": [
394 "disable_multimonitor_multisampling" 394 "disable_multimonitor_multisampling"
395 ] 395 ]
396 }, 396 },
397 { 397 {
398 "id": 31, 398 "id": 31,
399 "cr_bugs": [154715, 10068, 269829], 399 "cr_bugs": [154715, 10068, 269829, 294779],
400 "description": "The Nexus 10 Mali driver does not guarantee flush ordering .", 400 "description": "The Mali T-6xx driver does not guarantee flush ordering.",
401 "os": { 401 "os": {
402 "type": "android" 402 "type": "android"
403 }, 403 },
404 "gl_vendor": { 404 "gl_vendor": {
405 "op": "beginwith", 405 "op": "beginwith",
406 "value": "ARM" 406 "value": "ARM"
407 }, 407 },
408 "gl_renderer": { 408 "gl_renderer": {
409 "op": "contains", 409 "op": "beginwith",
410 "value": "Mali-T604" 410 "value": "Mali-T6"
411 }, 411 },
412 "features": [ 412 "features": [
413 "use_virtualized_gl_contexts" 413 "use_virtualized_gl_contexts"
414 ] 414 ]
415 }, 415 },
416 { 416 {
417 "id": 32, 417 "id": 32,
418 "cr_bugs": [179815], 418 "cr_bugs": [179815],
419 "description": "Share groups are not working on (older?) Broadcom drivers. ", 419 "description": "Share groups are not working on (older?) Broadcom drivers. ",
420 "os": { 420 "os": {
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 "features": [ 663 "features": [
664 "force_discrete_gpu" 664 "force_discrete_gpu"
665 ] 665 ]
666 } 666 }
667 ] 667 ]
668 } 668 }
669 669
670 ); // LONG_STRING_CONST macro 670 ); // LONG_STRING_CONST macro
671 671
672 } // namespace gpu 672 } // 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