mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 17:01:22 +00:00
8271860fb3
I want to support reading VkPhysicalDeviceLimits but it has some arrays. While I don't need to parse them (VkPhysicalDeviceLimits should be treated as read-only), I do need to be able to access them in property list expressions, and vkgen generates the cexpr type descriptors too. However, I will probably want to parse arrays some time in the future.
19 lines
359 B
Objective-C
19 lines
359 B
Objective-C
#ifndef __renderer_vulkan_vkgen_vkfixedarray_h
|
|
#define __renderer_vulkan_vkgen_vkfixedarray_h
|
|
|
|
#include <Object.h>
|
|
|
|
#include "vkgen.h"
|
|
#include "vktype.h"
|
|
|
|
@interface FixedArray: Type
|
|
{
|
|
Type *ele_type;
|
|
int ele_count;
|
|
}
|
|
-(void) writeTable;
|
|
-(void) writeSymtabInit;
|
|
-(void) writeSymtabEntry;
|
|
@end
|
|
|
|
#endif//__renderer_vulkan_vkgen_vkfixedarray_h
|