mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 21:02:50 +00:00
25ade4c0f3
And provisionally parse shader stage defs.
16 lines
364 B
C
16 lines
364 B
C
#ifndef __vkparse_h
|
|
#define __vkparse_h
|
|
|
|
#include "QF/cexpr.h"
|
|
#include "QF/Vulkan/renderpass.h"
|
|
#include "libs/video/renderer/vulkan/vkparse.hinc"
|
|
|
|
typedef struct parsectx_s {
|
|
struct exprctx_s *ectx;
|
|
struct vulkan_ctx_s *vctx;
|
|
} parsectx_t;
|
|
|
|
VkRenderPass QFV_ParseRenderPass (vulkan_ctx_t *ctx, plitem_t *plist);
|
|
void QFV_InitParse (void);
|
|
|
|
#endif//__vkparse_h
|