summaryrefslogtreecommitdiffstats
path: root/src/intel/vulkan/anv_private.h
diff options
context:
space:
mode:
authorChad Versace <[email protected]>2016-06-22 09:17:41 -0700
committerChad Versace <[email protected]>2016-06-23 16:10:25 -0700
commita0f3c3c9d4002ffc1dd987c816a1462e4a91a5f4 (patch)
treefcc04d5d3579377e18ffabb7a8925a3cc0b0a8a2 /src/intel/vulkan/anv_private.h
parent15d3777b743939062b4f5626cf921631bb764e44 (diff)
anv: Add anv_render_pass_attachment::store_op
Will be needed for resolving auxiliary surfaces. I didn't add anv_render_pass_attachment::stencil_store_op, as the driver would likely never use it, as stencil surfaces never have auxiliary surfaces. Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r--src/intel/vulkan/anv_private.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h
index 50b860ca581..8c2ffd8a8e9 100644
--- a/src/intel/vulkan/anv_private.h
+++ b/src/intel/vulkan/anv_private.h
@@ -1812,6 +1812,7 @@ struct anv_render_pass_attachment {
VkFormat format;
uint32_t samples;
VkAttachmentLoadOp load_op;
+ VkAttachmentStoreOp store_op;
VkAttachmentLoadOp stencil_load_op;
};