quakeforge/include/QF/Vulkan/funcs.h
Bill Currie 2bc78e7f0a Start work on a Vulkan-based renderer
Doesn't do much other than create an instance and enumerate some stuff,
but the build system is working.
2019-07-06 14:56:15 +09:00

9 lines
255 B
C

#ifndef __QF_Vulkan_funcs_h
#define __QF_Vulkan_funcs_h
#define EXPORTED_VULKAN_FUNCTION(fname) extern PFN_##fname fname;
#define GLOBAL_LEVEL_VULKAN_FUNCTION(fname) extern PFN_##fname fname;
#include "QF/Vulkan/funclist.h"
#endif//__QF_Vulkan_funcs_h