mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 07:47:32 +09:00
Add DirectShow in about:support
This commit is contained in:
parent
47600fab86
commit
77cfca739d
5 changed files with 23 additions and 2 deletions
|
|
@ -337,6 +337,16 @@ var snapshotFormatters = {
|
|||
addRowFromKey("features", "webgl2Extensions");
|
||||
addRowFromKey("features", "supportsHardwareH264", "hardwareH264");
|
||||
addRowFromKey("features", "currentAudioBackend", "audioBackend");
|
||||
if ("directShowEnabled" in data) {
|
||||
addRow("features", "directShowEnabled",
|
||||
strings.GetStringFromName(data.directShowEnabled ? "yes" : "no"));
|
||||
delete data.directShowEnabled;
|
||||
}
|
||||
if ("directShowH264Active" in data) {
|
||||
addRow("features", "directShowH264Active",
|
||||
strings.GetStringFromName(data.directShowH264Active ? "yes" : "no"));
|
||||
delete data.directShowH264Active;
|
||||
}
|
||||
addRowFromKey("features", "direct2DEnabled", "#Direct2D");
|
||||
|
||||
if ("directWriteEnabled" in data) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue