mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-27 22:52:21 +00:00
7829ec3adb
This makes it possible to use the parser to read in certain fields, but skip over others. The read-only is for cexpr parsing of the read-only fields.
21 lines
561 B
R
21 lines
561 B
R
#define __x86_64__
|
|
#include <vulkan/vulkan.h>
|
|
|
|
//FIXME copy of qfv_subpass_t in qf_renderpass.h
|
|
//except it doesn't really matter because a custom spec is used
|
|
typedef struct qfv_subpass_s {
|
|
vec4 color;
|
|
string name;
|
|
} qfv_subpass_t;
|
|
|
|
//FIXME copy of qfv_output_t in qf_renderpass.h
|
|
//except it doesn't really matter because a custom spec is used
|
|
typedef struct qfv_output_s {
|
|
VkExtent2D extent;
|
|
VkImage image;
|
|
VkImageView view;
|
|
VkFormat format;
|
|
uint32_t frames;
|
|
VkImageView *view_list;
|
|
VkImageLayout finalLayout;
|
|
} qfv_output_t;
|