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

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

Issue 11412263: Enable Stage3D on Chrome OS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 // 67 //
68 // FLOAT includes "op" "value", and "value2". "op" can be any of the 68 // FLOAT includes "op" "value", and "value2". "op" can be any of the
69 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is 69 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is
70 // only used if "op" is "between". "value" is used for all "op" values except 70 // only used if "op" is "between". "value" is used for all "op" values except
71 // "any". "value" and "value2" are valid float numbers. 71 // "any". "value" and "value2" are valid float numbers.
72 // INT is very much like FLOAT, except that the values need to be integers. 72 // INT is very much like FLOAT, except that the values need to be integers.
73 73
74 { 74 {
75 "name": "software rendering list", 75 "name": "software rendering list",
76 // Please update the version number whenever you change this file. 76 // Please update the version number whenever you change this file.
77 "version": "4.6", 77 "version": "4.7",
78 "entries": [ 78 "entries": [
79 { 79 {
80 "id": 1, 80 "id": 1,
81 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , 81 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." ,
82 "webkit_bugs": [47028], 82 "webkit_bugs": [47028],
83 "os": { 83 "os": {
84 "type": "macosx" 84 "type": "macosx"
85 }, 85 },
86 "vendor_id": "0x1002", 86 "vendor_id": "0x1002",
87 "device_id": ["0x7249"], 87 "device_id": ["0x7249"],
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 "description": "Stage3D is not supported on Linux.", 517 "description": "Stage3D is not supported on Linux.",
518 "cr_bugs": [129848], 518 "cr_bugs": [129848],
519 "os": { 519 "os": {
520 "type": "linux" 520 "type": "linux"
521 }, 521 },
522 "blacklist": [ 522 "blacklist": [
523 "flash_stage3d" 523 "flash_stage3d"
524 ] 524 ]
525 }, 525 },
526 { 526 {
527 "id": 36,
528 "description": "Stage3D is not supported on ChromeOS.",
529 "cr_bugs": [129848],
530 "os": {
531 "type": "chromeos"
532 },
533 "blacklist": [
534 "flash_stage3d"
535 ]
536 },
537 {
538 "id": 37, 527 "id": 37,
539 "description": "Drivers are unreliable for Optimus on Linux.", 528 "description": "Drivers are unreliable for Optimus on Linux.",
540 "cr_bugs": [131308], 529 "cr_bugs": [131308],
541 "os": { 530 "os": {
542 "type": "linux" 531 "type": "linux"
543 }, 532 },
544 "multi_gpu_style": "optimus", 533 "multi_gpu_style": "optimus",
545 "blacklist": [ 534 "blacklist": [
546 "all" 535 "all"
547 ] 536 ]
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
955 "os": { 944 "os": {
956 "type": "macosx" 945 "type": "macosx"
957 }, 946 },
958 "vendor_id": "0x1002", 947 "vendor_id": "0x1002",
959 "blacklist": [ 948 "blacklist": [
960 "multisampling" 949 "multisampling"
961 ] 950 ]
962 } 951 }
963 ] 952 ]
964 } 953 }
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