From e223bf9a1beffdda71df31a22321f45d16c9f3fe Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 14 Jun 2026 21:32:22 -0500 Subject: [PATCH] Use libplacebo renderer on macOS --- app/app.pro | 4 ++-- setup-deps.ps1 | 2 +- setup-deps.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/app.pro b/app/app.pro index 164eacd5..e3fb19a5 100644 --- a/app/app.pro +++ b/app/app.pro @@ -157,8 +157,8 @@ win32:!winrt { } macx { !disable-prebuilts { - LIBS += -lssl.3 -lcrypto.3 -lavcodec.62 -lavutil.60 -lswscale.9 -lopus.0 -lSDL2 -lSDL2_ttf - CONFIG += discord-rpc + LIBS += -lssl.3 -lcrypto.3 -lavcodec.62 -lavutil.60 -lswscale.9 -lopus.0 -lSDL2 -lSDL2_ttf -lplacebo + CONFIG += discord-rpc libplacebo } LIBS += -lobjc -framework VideoToolbox -framework AVFoundation -framework CoreVideo -framework CoreGraphics -framework CoreMedia -framework AppKit -framework Metal -framework QuartzCore diff --git a/setup-deps.ps1 b/setup-deps.ps1 index 2e7d7c12..d4649e38 100644 --- a/setup-deps.ps1 +++ b/setup-deps.ps1 @@ -4,7 +4,7 @@ $Organization = "moonlight-stream" $PrebuiltRepo = "moonlight-qt-deps" $TargetDir = Join-Path $PSScriptRoot "libs\windows" $Assets = @("windows-x64.zip", "windows-ARM64.zip") -$Tag = "v6" +$Tag = "v7.2" if (Test-Path $TargetDir) { Write-Host "Cleaning target directory..." -ForegroundColor Cyan diff --git a/setup-deps.py b/setup-deps.py index 6a8a0d2f..d2b6f629 100644 --- a/setup-deps.py +++ b/setup-deps.py @@ -7,7 +7,7 @@ import shutil ORGANIZATION = "moonlight-stream" PREBUILT_REPO = "moonlight-qt-deps" -TAG = "v6" +TAG = "v7.2" def get_platform_config(): system = platform.system()