summaryrefslogtreecommitdiffstats
path: root/src/amd/vulkan/radv_private.h
diff options
context:
space:
mode:
authorFredrik Höglund <fredrik@kde.org>2016-10-25 20:31:41 +0200
committerEmil Velikov <emil.l.velikov@gmail.com>2016-10-27 11:17:55 +0100
commit8ec30b87c0f4a7b7fb7adc86ce2429b40b8b557d (patch)
tree2ed705b598ef7ad032407784f29a8a05a657aa49 /src/amd/vulkan/radv_private.h
parentcc5995d9e65fc10703304744a9e58e1a518ad88c (diff)
downloadexternal_mesa3d-8ec30b87c0f4a7b7fb7adc86ce2429b40b8b557d.zip
external_mesa3d-8ec30b87c0f4a7b7fb7adc86ce2429b40b8b557d.tar.gz
external_mesa3d-8ec30b87c0f4a7b7fb7adc86ce2429b40b8b557d.tar.bz2
radv: mark the fence as submitted and signalled in vkAcquireNextImageKHR
This stops the debug layers from complaining when fences are used to throttle image acquisition. Cc: "13.0" <mesa-stable@lists.freedesktop.org> Signed-off-by: Dave Airlie <airlied@redhat.com> (cherry picked from commit 0a153f4ee472f8f17575bbfe05f1c96fb5ecf1ea)
Diffstat (limited to 'src/amd/vulkan/radv_private.h')
-rw-r--r--src/amd/vulkan/radv_private.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h
index caf27f2..cfdda36 100644
--- a/src/amd/vulkan/radv_private.h
+++ b/src/amd/vulkan/radv_private.h
@@ -1206,6 +1206,13 @@ void radv_initialise_cmask(struct radv_cmd_buffer *cmd_buffer,
struct radv_image *image, uint32_t value);
void radv_initialize_dcc(struct radv_cmd_buffer *cmd_buffer,
struct radv_image *image, uint32_t value);
+
+struct radv_fence {
+ struct radeon_winsys_fence *fence;
+ bool submitted;
+ bool signalled;
+};
+
#define RADV_DEFINE_HANDLE_CASTS(__radv_type, __VkType) \
\
static inline struct __radv_type * \