mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
6f73a7388b
I never actually tested what would happen, but I suspect destroying a staging buffer before it is finished its job would lead to unpleasant issues.
47 lines
1.5 KiB
C
47 lines
1.5 KiB
C
#ifndef __QF_Vulkan_command_h
|
|
#define __QF_Vulkan_command_h
|
|
|
|
#include "QF/darray.h"
|
|
|
|
typedef struct qfv_cmdbufferset_s
|
|
DARRAY_TYPE (VkCommandBuffer) qfv_cmdbufferset_t;
|
|
|
|
#define QFV_AllocCommandBufferSet(num, allocator) \
|
|
DARRAY_ALLOCFIXED (qfv_cmdbufferset_t, num, allocator)
|
|
|
|
typedef struct qfv_semaphoreset_s
|
|
DARRAY_TYPE (VkSemaphore) qfv_semaphoreset_t;
|
|
|
|
typedef struct qfv_fenceset_s
|
|
DARRAY_TYPE (VkFence) qfv_fenceset_t;
|
|
|
|
#define QFV_AllocFenceSet(num, allocator) \
|
|
DARRAY_ALLOCFIXED (qfv_fenceset_t, num, allocator)
|
|
|
|
typedef struct qfv_bufferimagecopy_s
|
|
DARRAY_TYPE (VkBufferImageCopy) qfv_bufferimagecopy_t;
|
|
|
|
#define QFV_AllocBufferImageCopy(num, allocator) \
|
|
DARRAY_ALLOCFIXED (qfv_bufferimagecopy_t, num, allocator)
|
|
|
|
struct qfv_queue_s;
|
|
struct qfv_device_s;
|
|
VkCommandPool QFV_CreateCommandPool (struct qfv_device_s *device,
|
|
uint32_t queueFamily,
|
|
int transient, int reset);
|
|
/** Allocate bufferset->size command buffers
|
|
*/
|
|
int QFV_AllocateCommandBuffers (struct qfv_device_s *device,
|
|
VkCommandPool pool, int secondary,
|
|
qfv_cmdbufferset_t *bufferset);
|
|
|
|
VkSemaphore QFV_CreateSemaphore (struct qfv_device_s *device);
|
|
VkFence QFV_CreateFence (struct qfv_device_s *device, int signaled);
|
|
int QFV_QueueSubmit (struct qfv_queue_s *queue,
|
|
qfv_semaphoreset_t *waitSemaphores,
|
|
VkPipelineStageFlags *stages,
|
|
qfv_cmdbufferset_t *buffers,
|
|
qfv_semaphoreset_t *signalSemaphores, VkFence fence);
|
|
int QFV_QueueWaitIdle (struct qfv_queue_s *queue);
|
|
|
|
#endif//__QF_Vulkan_command_h
|