quakeforge/libs/video/renderer/vulkan/vkgen/vkstruct.h
Bill Currie 96df447c45 [vulkan] Hook up the expression parser
The pipeline parser still isn't hooked up yet as something isn't quite
right, but it seems all the parsing works.
2020-12-21 18:38:31 +09:00

19 lines
363 B
Objective-C

#ifndef __renderer_vulkan_vkgen_vkstruct_h
#define __renderer_vulkan_vkgen_vkstruct_h
#include <Object.h>
#include "vkgen.h"
#include "vktype.h"
@class PLItem;
@interface Struct: Type
{
}
-(void) forEachFieldCall: (varfunc) func;
-(void) writeTable: (PLItem *) parse;
-(void) writeSymtabInit:(PLItem *) parse;
@end
#endif//__renderer_vulkan_vkgen_vkstruct_h