Files
evk/evk/evkSync.h
T
mo7sen 4ec57bbd79 Starting Out
Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
2025-07-02 12:37:06 +03:00

11 lines
233 B
C

#pragma once
#include "evk.h"
#include "evkDevice.h"
[[nodiscard("Leaking VkSemaphore")]]
VkSemaphore evkCreateSemaphore(evkDevice device);
[[nodiscard("Leaking VkFence")]]
VkFence evkCreateFence(evkDevice device, bool signaled);