mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-03 12:08:06 +02:00
vk: Update comments for anv_image_view
- Document the extent member. It's the extent of the view's base level. - s/VkAttachmentView/VkImageView/
This commit is contained in:
parent
19018c9f13
commit
6b5ce5daf5
1 changed files with 3 additions and 3 deletions
|
|
@ -1244,12 +1244,12 @@ struct anv_buffer_view {
|
|||
};
|
||||
|
||||
struct anv_image_view {
|
||||
const struct anv_image *image; /**< VkAttachmentViewCreateInfo::image */
|
||||
const struct anv_format *format; /**< VkAttachmentViewCreateInfo::format */
|
||||
const struct anv_image *image; /**< VkImageViewCreateInfo::image */
|
||||
const struct anv_format *format; /**< VkImageViewCreateInfo::format */
|
||||
struct anv_state surface_state; /**< RENDER_SURFACE_STATE */
|
||||
struct anv_bo *bo;
|
||||
uint32_t offset; /**< Offset into bo. */
|
||||
VkExtent3D extent;
|
||||
VkExtent3D extent; /**< Extent of VkImageViewCreateInfo::baseMipLevel. */
|
||||
};
|
||||
|
||||
enum anv_attachment_view_type {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue