Amend doxygen comments

Change-Id: I605f8f1b93eab28d5ea58c6f82798d8e14d2fa84
Signed-off-by: Iason Paraskevopoulos <iason.paraskevopoulos@arm.com>
This commit is contained in:
Iason Paraskevopoulos 2025-05-07 09:20:37 +01:00
parent 5d646b9ee3
commit c9db587a9c
2 changed files with 4 additions and 2 deletions

View file

@ -53,7 +53,7 @@ public:
* @brief Constructs a swapchain_image_create_external_memory object.
*
* @param[in] compression Optional compression control parameters for the swapchain image.
* @param[in] wsi_allocator Wsi alloc allocator pointer.
* @param[in] wsi_allocator wsialloc allocator pointer.
* @param[in] surface_formats Supported surface formats from the presentation engine.
* @param[in] physical_device Vulkan physical device handle.
* @param[in] allocator User provided allocation callbacks.

View file

@ -57,11 +57,13 @@ public:
void init(const VkSwapchainCreateInfoKHR &swapchain_create_info);
/**
* @brief Extend create info with extension data/
* @brief Extend create info with extension data.
*
* @param extensions Swapchain image create info extensions.
*
* @return VK_SUCCESS on success, an appropriate error code on failure.
*
* @note The extensions will be moved out of the vector and will become nullptr.
*/
VkResult add_extensions(util::vector<util::unique_ptr<swapchain_image_create_info_extension>> &extensions);