diff options
author | Samuel Pitoiset <[email protected]> | 2017-08-25 16:10:30 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-08-28 11:25:44 +0200 |
commit | 2bc3d656907a8424355f01e90f4c5589191c6a8a (patch) | |
tree | e81eef5b5bfdb890293fbbfda2ddd417241a657c /src/amd/vulkan/radv_private.h | |
parent | db91b8536e33a095a4bdfd4cedd215831c2c61e6 (diff) |
radv: rename record_fail to record_result and use VkResult
This will allow to propagate VK_ERROR_OUT_OF_HOST_MEMORY to
vkEndCommandBuffer() when necessary.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_private.h')
-rw-r--r-- | src/amd/vulkan/radv_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h index 0e297f5b6ea..cf5c8532789 100644 --- a/src/amd/vulkan/radv_private.h +++ b/src/amd/vulkan/radv_private.h @@ -833,7 +833,7 @@ struct radv_cmd_buffer { bool tess_rings_needed; bool sample_positions_needed; - bool record_fail; + VkResult record_result; int ring_offsets_idx; /* just used for verification */ uint32_t gfx9_fence_offset; |