mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-02 21:01:01 +00:00
32-bit compile fix
This commit is contained in:
@@ -1718,7 +1718,7 @@ void VulkanReplay::FetchVSOut(uint32_t eventId, VulkanRenderState &state)
|
||||
}
|
||||
|
||||
if(attrDesc.binding < state.vbuffers.size())
|
||||
stride = state.vbuffers[attrDesc.binding].stride;
|
||||
stride = (size_t)state.vbuffers[attrDesc.binding].stride;
|
||||
|
||||
if(origVBBegin == NULL)
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user