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"
|
2020-12-21 09:38:31 +00:00
|
|
|
#include "libs/video/renderer/vulkan/vkparse.hinc"
|
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;
|
|
|
|
|
2020-12-21 09:38:31 +00:00
|
|
|
VkRenderPass QFV_ParseRenderPass (vulkan_ctx_t *ctx, plitem_t *plist);
|
|
|
|
void QFV_InitParse (void);
|
2020-07-16 06:42:49 +00:00
|
|
|
|
|
|
|
#endif//__vkparse_h
|