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

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

Issue 16430003: Remove linux x86 from HW video decode black list Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase to r263658 Created 6 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 | « content/content_common.gypi ('k') | 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 certain gpu-related features are blacklisted or not. 5 // Determines whether certain gpu-related features are blacklisted or not.
6 // The format of a valid software_rendering_list.json file is defined in 6 // The format of a valid software_rendering_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 <gpu/config/gpu_blacklist.cc>. 8 // The supported "features" can be found in <gpu/config/gpu_blacklist.cc>.
9 9
10 #include "gpu/config/gpu_control_list_jsons.h" 10 #include "gpu/config/gpu_control_list_jsons.h"
(...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 "driver_version": { 536 "driver_version": {
537 "op": "<", 537 "op": "<",
538 "value": "295" 538 "value": "295"
539 }, 539 },
540 "features": [ 540 "features": [
541 "all" 541 "all"
542 ] 542 ]
543 }, 543 },
544 { 544 {
545 "id": 48, 545 "id": 48,
546 "description": "Accelerated video decode is unavailable on Mac and Linux", 546 "description": "Accelerated video decode is unavailable on Mac",
547 "cr_bugs": [137247, 133828], 547 "cr_bugs": [133828],
548 "exceptions": [ 548 "exceptions": [
549 { 549 {
550 "os": { 550 "os": {
551 "type": "chromeos" 551 "type": "chromeos"
552 } 552 }
553 }, 553 },
554 { 554 {
555 "os": { 555 "os": {
556 "type": "linux"
557 }
558 },
559 {
560 "os": {
556 "type": "win" 561 "type": "win"
557 } 562 }
558 }, 563 },
559 { 564 {
560 "os": { 565 "os": {
561 "type": "android" 566 "type": "android"
562 } 567 }
563 } 568 }
564 ], 569 ],
565 "features": [ 570 "features": [
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
1111 "features": [ 1116 "features": [
1112 "all" 1117 "all"
1113 ] 1118 ]
1114 } 1119 }
1115 ] 1120 ]
1116 } 1121 }
1117 1122
1118 ); // LONG_STRING_CONST macro 1123 ); // LONG_STRING_CONST macro
1119 1124
1120 } // namespace gpu 1125 } // namespace gpu
OLDNEW
« no previous file with comments | « content/content_common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698