From 44d65a6377c19ac7a1735bb05f0ef1af7f11fe7a Mon Sep 17 00:00:00 2001 From: Robert Beckebans Date: Sat, 17 Sep 2022 13:37:34 +0200 Subject: [PATCH] Switched nvrhi to github.com/RobertBeckebans/nvrhi.git --- .gitmodules | 2 +- neo/extern/nvrhi | 2 +- neo/renderer/RenderSystem_init.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index 001b1f6f..17c9e508 100644 --- a/.gitmodules +++ b/.gitmodules @@ -3,4 +3,4 @@ url = https://github.com/KhronosGroup/glslang.git [submodule "neo/extern/nvrhi"] path = neo/extern/nvrhi - url = https://github.com/stephenap07/nvrhi.git + url = https://github.com/RobertBeckebans/nvrhi.git diff --git a/neo/extern/nvrhi b/neo/extern/nvrhi index 43d74475..2caca768 160000 --- a/neo/extern/nvrhi +++ b/neo/extern/nvrhi @@ -1 +1 @@ -Subproject commit 43d74475fdc369c6a31b25efe31c3b7f99a81807 +Subproject commit 2caca768dc9598cd8e46f3d2257270a1db1981ce diff --git a/neo/renderer/RenderSystem_init.cpp b/neo/renderer/RenderSystem_init.cpp index 27ac7643..bd63ae85 100644 --- a/neo/renderer/RenderSystem_init.cpp +++ b/neo/renderer/RenderSystem_init.cpp @@ -67,7 +67,7 @@ idCVar r_requestStereoPixelFormat( "r_requestStereoPixelFormat", "1", CVAR_RENDE idCVar r_debugContext( "r_debugContext", "0", CVAR_RENDERER, "Enable various levels of context debug." ); #if defined( USE_NVRHI ) #if defined( _WIN32 ) - idCVar r_graphicsAPI( "r_graphicsAPI", "vulkan", CVAR_RENDERER, "Specifies the graphics api to use (dx12, vulkan)" ); + idCVar r_graphicsAPI( "r_graphicsAPI", "dx12", CVAR_RENDERER, "Specifies the graphics api to use (dx12, vulkan)" ); #else idCVar r_graphicsAPI( "r_graphicsAPI", "vulkan", CVAR_RENDERER, "Specifies the graphics api to use (vulkan)" ); #endif