added GPU upload wait time in the dev print

This commit is contained in:
myT 2024-12-20 01:32:58 +01:00
parent f22e53b2f6
commit f3594a8900

View file

@ -1162,11 +1162,14 @@ namespace RHI
void UploadManager::EndOfBufferReached()
{
ri.Printf(PRINT_DEVELOPER, "Waiting for GPU upload: %s (%d T, %d B)\n",
const int64_t startUS = Sys_Microseconds();
fence.WaitOnCPU(fenceValue);
const int64_t elapsedUS = Sys_Microseconds() - startUS;
ri.Printf(PRINT_DEVELOPER, "Waited %d ms for GPU upload: %s (%d T, %d B)\n",
(int)(elapsedUS / 1000),
Com_FormatBytes(bufferByteOffset),
batchTextureCount,
batchBufferCount);
fence.WaitOnCPU(fenceValue);
D3D(commandAllocator->Reset());
bufferByteOffset = 0;
batchTextureCount = 0;