quakeforge/libs/video/renderer/vulkan/vkgen/stdint.h
Bill Currie fe16fed01a [vulkan] Update vkgen for the newly added bool type
I had forgotten about this, and ironically it's just one field in all of
vkparse, but adding support for bool to vkgen was easier than expected.
2024-09-04 10:33:10 +09:00

13 lines
326 B
C

#ifndef __vkgen_stdint_h
#define __vkgen_stdint_h
typedef int uint8_t;
typedef int uint16_t;
typedef int uint32_t;
typedef int uint64_t;
typedef int int8_t;
typedef int int16_t;
typedef int int32_t;
typedef int int64_t;
typedef int size_t;
typedef struct char { int x; } char;//FIXME add char to qfcc
#endif//__vkgen_stdint_h