summaryrefslogtreecommitdiff
path: root/src/broadcom/vulkan/v3dv_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/broadcom/vulkan/v3dv_private.h')
-rw-r--r--src/broadcom/vulkan/v3dv_private.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/broadcom/vulkan/v3dv_private.h b/src/broadcom/vulkan/v3dv_private.h
index a69fcb19e1b..a01238ec1e4 100644
--- a/src/broadcom/vulkan/v3dv_private.h
+++ b/src/broadcom/vulkan/v3dv_private.h
@@ -1372,6 +1372,9 @@ struct v3dv_semaphore {
/* A syncobject handle associated with this semaphore */
uint32_t sync;
+
+ /* A temporary syncobject handle produced from a vkImportSemaphoreFd. */
+ uint32_t temp_sync;
};
struct v3dv_fence {
@@ -1379,6 +1382,9 @@ struct v3dv_fence {
/* A syncobject handle associated with this fence */
uint32_t sync;
+
+ /* A temporary syncobject handle produced from a vkImportFenceFd. */
+ uint32_t temp_sync;
};
struct v3dv_event {