diff options
author | Andres Rodriguez <[email protected]> | 2017-01-27 00:03:03 -0500 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2017-01-30 08:38:13 +0100 |
commit | e199a993b2eb13319691b690af8f52bf8a0016b8 (patch) | |
tree | 2d66b2e6ef02aad579678d18671d9272094f242b /src/amd/vulkan | |
parent | ec0f5c005ce75ebd94fea8d8e71a6ae852293fce (diff) |
radv: vkAllocateCommandBuffers should NULL all output handles
This is part of the spec and fixes CTS tests:
dEQP-VK.api.object_management.alloc_callback_fail_multiple.command_buffer_*
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan')
-rw-r--r-- | src/amd/vulkan/radv_cmd_buffer.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/amd/vulkan/radv_cmd_buffer.c b/src/amd/vulkan/radv_cmd_buffer.c index a83090f6658..c4e8324a338 100644 --- a/src/amd/vulkan/radv_cmd_buffer.c +++ b/src/amd/vulkan/radv_cmd_buffer.c @@ -1351,6 +1351,9 @@ VkResult radv_AllocateCommandBuffers( VkResult result = VK_SUCCESS; uint32_t i; + memset(pCommandBuffers, 0, + sizeof(*pCommandBuffers)*pAllocateInfo->commandBufferCount); + for (i = 0; i < pAllocateInfo->commandBufferCount; i++) { result = radv_create_cmd_buffer(device, pool, pAllocateInfo->level, &pCommandBuffers[i]); |