From 9902c37aa24ef85d96b80012d5d3b9af70aff175 Mon Sep 17 00:00:00 2001 From: Vladimir Borisov Date: Thu, 23 Jan 2025 15:12:30 +0200 Subject: [PATCH] Fix HDR --- src/stremio_app/stremio_player/player.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/stremio_app/stremio_player/player.rs b/src/stremio_app/stremio_player/player.rs index 4b6a02d..7ba1f29 100644 --- a/src/stremio_app/stremio_player/player.rs +++ b/src/stremio_app/stremio_player/player.rs @@ -67,14 +67,6 @@ fn create_shareable_mpv(window_handle: HWND) -> Arc { }; } set_property!("wid", window_handle as i64); - // initializer.set_property("vo", "gpu").expect("unable to set vo"); - // win, opengl: works but least performancy, 10-15% CPU - // winvk, vulkan: works as good as d3d11 - // d3d11, d1d11: works great - // dxinterop, auto: works, slightly more cpu use than d3d11 - // default (auto) seems to be d3d11 (vo/gpu/d3d11) - set_property!("gpu-context", "angle"); - set_property!("gpu-api", "auto"); set_property!("title", "Stremio"); set_property!("terminal", "yes"); set_property!("msg-level", "all=no,cplayer=debug");