Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions apps/desktop/src-tauri/src/export.rs
Original file line number Diff line number Diff line change
Expand Up @@ -298,9 +298,10 @@ async fn run_out_of_process_export_attempt(
}

if mode.is_software_safe() {
command
.env("CAP_RENDER_FORCE_SOFTWARE_ADAPTER", "1")
.env("CAP_EXPORT_FORCE_SOFTWARE_ENCODER", "1");
command.env("CAP_EXPORT_FORCE_SOFTWARE_ENCODER", "1");
if cfg!(windows) {
command.env("CAP_RENDER_FORCE_SOFTWARE_ADAPTER", "1");
}
}
configure_exporter_command(&mut command);

Expand Down
Loading
Loading