mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-25 21:21:14 +00:00
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).
19 lines
344 B
Objective-C
19 lines
344 B
Objective-C
#ifndef __renderer_vulkan_vkgen_vkenum_h
|
|
#define __renderer_vulkan_vkgen_vkenum_h
|
|
|
|
#include "vktype.h"
|
|
|
|
@class PLItem;
|
|
|
|
@interface Enum: Type
|
|
{
|
|
int prefix_length;
|
|
}
|
|
-(void) writeForward;
|
|
-(void) writeTable;
|
|
-(void) writeSymtabInit;
|
|
-(void) writeSymtabShutdown;
|
|
-(void) writeSymtabEntry;
|
|
@end
|
|
|
|
#endif//__renderer_vulkan_vkgen_vkenum_h
|