mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
19c75f5e49
It now takes qfv_imageviewset_t instead of separate count and VkImageView array.
44 lines
1.4 KiB
C
44 lines
1.4 KiB
C
#ifndef __QF_Vulkan_renderpass_h
|
|
#define __QF_Vulkan_renderpass_h
|
|
|
|
#include "QF/darray.h"
|
|
|
|
typedef struct qfv_attachmentdescription_s
|
|
DARRAY_TYPE (VkAttachmentDescription) qfv_attachmentdescription_t;
|
|
|
|
#define QFV_AllocAttachmentDescription(num, allocator) \
|
|
DARRAY_ALLOCFIXED (qfv_attachmentdescription_t, num, allocator)
|
|
|
|
typedef struct qfv_attachmentreference_s
|
|
DARRAY_TYPE (VkAttachmentReference) qfv_attachmentreference_t;
|
|
|
|
#define QFV_AllocAttachmentReference(num, allocator) \
|
|
DARRAY_ALLOCFIXED (qfv_attachmentreference_t, num, allocator)
|
|
|
|
typedef struct qfv_subpassparametersset_s
|
|
DARRAY_TYPE (VkSubpassDescription) qfv_subpassparametersset_t;
|
|
|
|
#define QFV_AllocSubpassParametersSet(num, allocator) \
|
|
DARRAY_ALLOCFIXED (qfv_subpassparametersset_t, num, allocator)
|
|
|
|
typedef struct qfv_subpassdependency_s
|
|
DARRAY_TYPE (VkSubpassDependency) qfv_subpassdependency_t;
|
|
|
|
#define QFV_AllocSubpassDependencies(num, allocator) \
|
|
DARRAY_ALLOCFIXED (qfv_subpassdependency_t, num, allocator)
|
|
|
|
struct qfv_device_s;
|
|
struct qfv_imageviewset_s;
|
|
VkRenderPass
|
|
QFV_CreateRenderPass (struct qfv_device_s *device,
|
|
qfv_attachmentdescription_t *attachments,
|
|
qfv_subpassparametersset_t *subpasses,
|
|
qfv_subpassdependency_t *dependencies);
|
|
|
|
VkFramebuffer
|
|
QFV_CreateFramebuffer (struct qfv_device_s *device,
|
|
VkRenderPass renderPass,
|
|
struct qfv_imageviewset_s *attachments,
|
|
VkExtent2D, uint32_t layers);
|
|
|
|
#endif//__QF_Vulkan_renderpass_h
|