Skip to content

Commit

Permalink
Removed the default parameter value to fix the Windows/DX11 build.
Browse files Browse the repository at this point in the history
  • Loading branch information
apanteleev committed Oct 29, 2024
1 parent ab13471 commit 4fa26f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/d3d11/d3d11-device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4fa26f2

Please sign in to comment.