aboutsummaryrefslogtreecommitdiffstats
path: root/src/amd/vulkan/radv_private.h
diff options
context:
space:
mode:
authorSamuel Pitoiset <[email protected]>2019-12-06 14:14:25 +0100
committerMarge Bot <[email protected]>2020-01-03 12:31:53 +0000
commit7bbf497b68430934ab34316823e0f59ee34f9a4f (patch)
tree5aff704a445581bfcf202528c4df395e58676e69 /src/amd/vulkan/radv_private.h
parent8d50ab53953871b408f5671031f32a56a63dc784 (diff)
radv: record number of color/depth samples for each subpass
Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3018>
Diffstat (limited to 'src/amd/vulkan/radv_private.h')
-rw-r--r--src/amd/vulkan/radv_private.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h
index 01a2533b33e..599c24b1e0f 100644
--- a/src/amd/vulkan/radv_private.h
+++ b/src/amd/vulkan/radv_private.h
@@ -2156,6 +2156,9 @@ struct radv_subpass {
struct radv_subpass_barrier start_barrier;
uint32_t view_mask;
+
+ VkSampleCountFlagBits color_sample_count;
+ VkSampleCountFlagBits depth_sample_count;
VkSampleCountFlagBits max_sample_count;
};