From: Chad Versace Date: Fri, 17 Jul 2015 21:39:05 +0000 (-0700) Subject: vk: Document members of anv_surface_view X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=194b77d426cf7cc8ace24eba079fbe25102c4f44;p=mesa.git vk: Document members of anv_surface_view --- diff --git a/src/vulkan/private.h b/src/vulkan/private.h index a1fe5304572..16ddaefc57e 100644 --- a/src/vulkan/private.h +++ b/src/vulkan/private.h @@ -885,12 +885,12 @@ struct anv_image { }; struct anv_surface_view { - struct anv_state surface_state; - struct anv_bo * bo; - uint32_t offset; - uint32_t range; - VkExtent3D extent; - VkFormat format; + struct anv_state surface_state; /**< RENDER_SURFACE_STATE */ + struct anv_bo *bo; + uint32_t offset; /**< VkBufferCreateInfo::offset */ + uint32_t range; /**< VkBufferCreateInfo::range */ + VkExtent3D extent; + VkFormat format; /**< VkBufferCreateInfo::format */ }; struct anv_buffer_view {