Fix pointer-size mismatch

This commit is contained in:
Katelyn Gadd 2025-01-12 18:25:49 -08:00
parent 253b424cb4
commit 90707c019c
1 changed files with 2 additions and 2 deletions

View File

@ -9228,7 +9228,7 @@ static bool VULKAN_INTERNAL_AllocateCommandBuffer(
VULKAN_INTERNAL_SetObjectNamePrintf(
renderer, commandBuffer->commandBuffer, VK_OBJECT_TYPE_COMMAND_BUFFER,
"[Thread %d's Command pool %p] Command buffer %p", vulkanCommandPool->threadID, vulkanCommandPool, commandBuffer
"[Thread %p's Command pool %p] Command buffer %p", vulkanCommandPool->threadID, vulkanCommandPool, commandBuffer
);
vulkanCommandPool->inactiveCommandBuffers[vulkanCommandPool->inactiveCommandBufferCount] = commandBuffer;
@ -9277,7 +9277,7 @@ static VulkanCommandPool *VULKAN_INTERNAL_FetchCommandPool(
VULKAN_INTERNAL_SetObjectNamePrintf(
renderer, vulkanCommandPool->commandPool, VK_OBJECT_TYPE_COMMAND_POOL,
"[Thread %d] Command pool %p", threadID, vulkanCommandPool
"[Thread %p] Command pool %p", threadID, vulkanCommandPool
);
vulkanCommandPool->threadID = threadID;