nvk: Add include guards to nvk_bo_sync.h

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25085>
This commit is contained in:
Faith Ekstrand
2023-09-06 10:35:02 -05:00
committed by Marge Bot
parent 1249937b5d
commit 9aa18e45d9

View File

@@ -1,3 +1,6 @@
#ifndef NVK_BO_SYNC_H
#define NVK_BO_SYNC_H 1
#include "nvk_private.h"
#include "vulkan/runtime/vk_sync.h"
@@ -23,3 +26,5 @@ nvk_create_sync_for_memory(struct vk_device *device,
VkDeviceMemory memory,
bool signal_memory,
struct vk_sync **sync_out);
#endif /* NVK_BO_SYNC_H */