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

13 lines
376 B
C

#pragma once
#include "evkCommon.h"
evkImage evkGPUCreateImage(evkGPUAllocationCreateInfo, VkImageCreateInfo*);
void evkGPUDestroyImage(evkImage);
evkBuffer evkGPUCreateBuffer(evkGPUAllocationCreateInfo, VkBufferCreateInfo*);
void evkGPUDestroyBuffer(evkBuffer);
evkGPUAllocator evkGPUCreateAllocator(evkDevice device);
void evkGPUDestroyAllocator(evkGPUAllocator alloc);