From 4fa26f2c3a4c57e1aceef582aa2f792c8a3b1c85 Mon Sep 17 00:00:00 2001 From: Alexey Panteleev Date: Tue, 29 Oct 2024 08:30:27 -0700 Subject: [PATCH] Removed the default parameter value to fix the Windows/DX11 build. --- src/d3d11/d3d11-device.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d3d11/d3d11-device.cpp b/src/d3d11/d3d11-device.cpp index da5e093..1a6f7ff 100644 --- a/src/d3d11/d3d11-device.cpp +++ b/src/d3d11/d3d11-device.cpp @@ -184,7 +184,7 @@ namespace nvrhi::d3d11 utils::NotSupported(); } - void Device::updateTextureTileMappings(ITexture* texture, const TextureTilesMapping* tileMappings, uint32_t numTileMappings, CommandQueue executionQueue = CommandQueue::Graphics) + void Device::updateTextureTileMappings(ITexture* texture, const TextureTilesMapping* tileMappings, uint32_t numTileMappings, CommandQueue executionQueue) { (void)texture; (void)tileMappings;