quakeforge/libs/video/renderer/vulkan/vkgen/vkfixedarray.h
Bill Currie 860f48d541 Clean up about 12000 allocations
Some of them were actual leaks, but tracking memory should be a lot
easier now. However, there's a lot of room for optimization of
allocations (eg, recylcling of hierarchies. There is now 1 active
allocation (according to tracy) when nq exits: Qgetline's string buffer
(I think an api change is in order).
2024-01-05 11:50:48 +09:00

21 lines
410 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) writeForward;
-(void) writeTable;
-(void) writeSymtabInit;
-(void) writeSymtabShutdown;
-(void) writeSymtabEntry;
@end
#endif//__renderer_vulkan_vkgen_vkfixedarray_h