mirror of
https://github.com/w23/xash3d-fwgs
synced 2024-12-14 04:59:58 +01:00
11 lines
239 B
C
11 lines
239 B
C
#include "vk_core.h"
|
|
|
|
typedef struct {
|
|
VkCommandPool pool;
|
|
VkCommandBuffer *buffers;
|
|
int buffers_count;
|
|
} vk_command_pool_t;
|
|
|
|
vk_command_pool_t R_VkCommandPoolCreate( int count );
|
|
void R_VkCommandPoolDestroy( vk_command_pool_t *pool );
|