mirror of
https://bitbucket.org/CPMADevs/cnq3
synced 2025-04-05 09:00:51 +00:00
added GPU upload wait time in the dev print
This commit is contained in:
parent
f22e53b2f6
commit
f3594a8900
1 changed files with 5 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue