2020-07-16 06:42:49 +00:00
|
|
|
#ifndef __vkparse_h
|
|
|
|
#define __vkparse_h
|
|
|
|
|
2020-12-23 16:36:17 +00:00
|
|
|
#include "QF/cexpr.h"
|
2020-07-16 06:42:49 +00:00
|
|
|
#include "QF/Vulkan/renderpass.h"
|
2021-01-04 08:26:39 +00:00
|
|
|
#ifdef vkparse_internal
|
2020-12-21 09:38:31 +00:00
|
|
|
#include "libs/video/renderer/vulkan/vkparse.hinc"
|
2021-01-04 08:26:39 +00:00
|
|
|
#endif
|
2020-07-16 06:42:49 +00:00
|
|
|
|
2020-12-23 16:36:17 +00:00
|
|
|
typedef struct parsectx_s {
|
|
|
|
struct exprctx_s *ectx;
|
|
|
|
struct vulkan_ctx_s *vctx;
|
|
|
|
} parsectx_t;
|
|
|
|
|
2021-01-04 08:36:11 +00:00
|
|
|
|
|
|
|
void QFV_ParseDescriptorSetLayouts (vulkan_ctx_t *ctx, plitem_t *sets);
|
2020-12-21 09:38:31 +00:00
|
|
|
VkRenderPass QFV_ParseRenderPass (vulkan_ctx_t *ctx, plitem_t *plist);
|
|
|
|
void QFV_InitParse (void);
|
2021-01-04 08:26:39 +00:00
|
|
|
exprenum_t *QFV_GetEnum (const char *name);
|
2020-07-16 06:42:49 +00:00
|
|
|
|
|
|
|
#endif//__vkparse_h
|