mirror of
https://github.com/w23/xash3d-fwgs
synced 2024-12-17 23:09:40 +01:00
8 lines
186 B
C
8 lines
186 B
C
#pragma once
|
|
#include "vk_core.h"
|
|
|
|
qboolean createBuffer(vk_buffer_t *buf, uint32_t size, VkBufferUsageFlags usage, VkMemoryPropertyFlags flags);
|
|
void destroyBuffer(vk_buffer_t *buf);
|
|
|
|
|