LunarG / vktrace

Vulkan vktrace / vkreplay
Other
6 stars 8 forks source link

vktraceviewer: Export to text bugs #34

Open RCalocaO opened 6 years ago

RCalocaO commented 6 years ago

When dumping commands, you get: vkvkEndCommandBuffer(commandBuffer = 000000002B1D5CE0,

(that's a comma at the end, not closing parenthesis)

which uses a 64bit ptr printf, while vkvkQueueSubmit(queue = 000000002B1C2480, submitCount = 1, pSubmits = 0000000019E03518 [0]={... waitSemaphoreCount=1, pWaitSemaphores[0]=2aeb2610, cmdBufferCount=1, pCmdBuffers[0]=2e72e120, signalSemaphoreCount=0, pSignalSemaphores[0]=0 ...}, fence = 000000002E6DB940)

uses 32bit pointers on pCmdBuffers, which makes it harder to do global searches on the text file.