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