vkd3d: Fix const-ness warning on MSVC.

Signed-off-by: Hans-Kristian Arntzen <post@arntzen-software.no>
This commit is contained in:
Hans-Kristian Arntzen 2020-12-02 12:19:44 +01:00
parent 5f8659f4bb
commit b85a345d48
1 changed files with 1 additions and 1 deletions

View File

@ -8270,7 +8270,7 @@ static void d3d12_command_queue_transition_pool_deinit(struct d3d12_command_queu
VK_CALL(vkDestroyCommandPool(device->vk_device, pool->pool, NULL));
VK_CALL(vkDestroySemaphore(device->vk_device, pool->timeline, NULL));
vkd3d_free(pool->barriers);
vkd3d_free(pool->query_heaps);
vkd3d_free((void*)pool->query_heaps);
}
static void d3d12_command_queue_transition_pool_add_barrier(struct d3d12_command_queue_transition_pool *pool,