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

Side by Side Diff: gpu/software_rendering_list/software_rendering_list.json

Issue 10541022: Relate the optimus/linux blacklist entry to a crbug. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/
Patch Set: Created 8 years, 6 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 // Determines whether certain gpu-related features are blacklisted or not. 1 // Determines whether certain gpu-related features are blacklisted or not.
2 // A valid software_rendering_list.json file are in the format of 2 // A valid software_rendering_list.json file are in the format of
3 // { 3 // {
4 // "version": "x.y", 4 // "version": "x.y",
5 // "entries": [ 5 // "entries": [
6 // { // entry 1 6 // { // entry 1
7 // }, 7 // },
8 // ... 8 // ...
9 // { // entry n 9 // { // entry n
10 // } 10 // }
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 // "contains", "beginwith", "endwith", "=". "value" is a string. 54 // "contains", "beginwith", "endwith", "=". "value" is a string.
55 // 55 //
56 // FLOAT includes "op" "value", and "value2". "op" can be any of the 56 // FLOAT includes "op" "value", and "value2". "op" can be any of the
57 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is 57 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is
58 // only used if "op" is "between". "value" is used for all "op" values except 58 // only used if "op" is "between". "value" is used for all "op" values except
59 // "any". "value" and "value2" are valid float numbers. 59 // "any". "value" and "value2" are valid float numbers.
60 60
61 { 61 {
62 "name": "software rendering list", 62 "name": "software rendering list",
63 // Please update the version number whenever you change this file. 63 // Please update the version number whenever you change this file.
64 "version": "1.35", 64 "version": "1.36",
65 "entries": [ 65 "entries": [
66 { 66 {
67 "id": 1, 67 "id": 1,
68 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , 68 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." ,
69 "webkit_bugs": [47028], 69 "webkit_bugs": [47028],
70 "os": { 70 "os": {
71 "type": "macosx" 71 "type": "macosx"
72 }, 72 },
73 "vendor_id": "0x1002", 73 "vendor_id": "0x1002",
74 "device_id": ["0x7249"], 74 "device_id": ["0x7249"],
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 "os": { 552 "os": {
553 "type": "chromeos" 553 "type": "chromeos"
554 }, 554 },
555 "blacklist": [ 555 "blacklist": [
556 "flash_stage3d" 556 "flash_stage3d"
557 ] 557 ]
558 }, 558 },
559 { 559 {
560 "id": 37, 560 "id": 37,
561 "description": "Drivers are unreliable for Optimus on Linux.", 561 "description": "Drivers are unreliable for Optimus on Linux.",
562 "cr_bugs": [131308],
562 "os": { 563 "os": {
563 "type": "linux" 564 "type": "linux"
564 }, 565 },
565 "multi_gpu_style": "optimus", 566 "multi_gpu_style": "optimus",
566 "blacklist": [ 567 "blacklist": [
567 "all" 568 "all"
568 ] 569 ]
569 } 570 }
570 ] 571 ]
571 } 572 }
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