4ec57bbd79
Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
11 lines
233 B
C
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);
|