From a4e761bedc64b11b54a6f2a506bb37474b7d94a6 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Mon, 4 Mar 2024 16:31:14 +1100 Subject: [PATCH] [host] win: make D12 the default copy backend --- host/platform/Windows/capture/CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/host/platform/Windows/capture/CMakeLists.txt b/host/platform/Windows/capture/CMakeLists.txt index 7c1f59ca..a6e44c84 100644 --- a/host/platform/Windows/capture/CMakeLists.txt +++ b/host/platform/Windows/capture/CMakeLists.txt @@ -19,14 +19,14 @@ if(NOT EXISTS "${nvfbc_sdk}/inc" OR NOT IS_DIRECTORY "${nvfbc_sdk}/inc") endif() # NOTE: the order here denotes the default -if(USE_DXGI) - add_capture("DXGI") -endif() - if(USE_D12) add_capture("D12") endif() +if(USE_DXGI) + add_capture("DXGI") +endif() + if(USE_NVFBC) add_capture("NVFBC") endif()