Skip to content

Commit

Permalink
Fix MSVC compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
past-due committed Jul 17, 2023
1 parent 7065f55 commit e3070b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ivis_opengl/gfx_api_vk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5748,7 +5748,7 @@ bool VkRoot::setDepthPassProperties(size_t _numDepthPasses, size_t _depthBufferR
}

depthPassCount = _numDepthPasses;
depthMapSize = _depthBufferResolution;
depthMapSize = static_cast<uint32_t>(_depthBufferResolution);

createDepthPassImagesAndFBOs(depthBufferFormat);

Expand Down

0 comments on commit e3070b3

Please sign in to comment.