summaryrefslogtreecommitdiffstats
path: root/src/vulkan/private.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vulkan/private.h')
-rw-r--r--src/vulkan/private.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/vulkan/private.h b/src/vulkan/private.h
index 16ddaefc57e..ac64f294c2d 100644
--- a/src/vulkan/private.h
+++ b/src/vulkan/private.h
@@ -889,17 +889,16 @@ struct anv_surface_view {
struct anv_bo *bo;
uint32_t offset; /**< VkBufferCreateInfo::offset */
uint32_t range; /**< VkBufferCreateInfo::range */
- VkExtent3D extent;
VkFormat format; /**< VkBufferCreateInfo::format */
};
struct anv_buffer_view {
- /* FINISHME: Trim unneeded data from this struct. */
struct anv_surface_view view;
};
struct anv_image_view {
struct anv_surface_view view;
+ VkExtent3D extent;
};
enum anv_attachment_view_type {
@@ -909,11 +908,11 @@ enum anv_attachment_view_type {
struct anv_attachment_view {
enum anv_attachment_view_type attachment_type;
+ VkExtent3D extent;
};
struct anv_color_attachment_view {
struct anv_attachment_view base;
-
struct anv_surface_view view;
};