2022-09-12 15:10:56 +00:00
|
|
|
#include <algorithm>
|
2024-01-02 12:47:01 +00:00
|
|
|
#include <array> // ArrayWrapperND
|
|
|
|
#include <string.h> // strnlen
|
|
|
|
#include <string> // std::string
|
2023-03-08 09:10:54 +00:00
|
|
|
#include <vulkan/${vulkan_h}>
|
2023-09-07 13:20:10 +00:00
|
|
|
#include <vulkan/vulkan_hpp_macros.hpp>
|
|
|
|
|
2022-07-28 15:09:08 +00:00
|
|
|
#if 17 <= VULKAN_HPP_CPP_VERSION
|
2024-01-02 12:47:01 +00:00
|
|
|
# include <string_view>
|
2022-07-28 15:09:08 +00:00
|
|
|
#endif
|
|
|
|
|
2023-09-07 13:20:10 +00:00
|
|
|
#if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE )
|
2024-01-02 12:47:01 +00:00
|
|
|
# include <tuple> // std::tie
|
|
|
|
# include <vector> // std::vector
|
2022-07-28 15:09:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined( VULKAN_HPP_NO_EXCEPTIONS )
|
|
|
|
# include <system_error> // std::is_error_code_enum
|
|
|
|
#endif
|
|
|
|
|
2023-09-07 13:20:10 +00:00
|
|
|
#if ( VULKAN_HPP_ASSERT == assert )
|
2022-07-28 15:09:08 +00:00
|
|
|
# include <cassert>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if VULKAN_HPP_ENABLE_DYNAMIC_LOADER_TOOL == 1
|
2024-01-02 12:47:01 +00:00
|
|
|
# if defined( __unix__ ) || defined( __APPLE__ ) || defined( __QNX__ ) || defined( __Fuchsia__ )
|
2022-07-28 15:09:08 +00:00
|
|
|
# include <dlfcn.h>
|
2024-01-09 08:13:37 +00:00
|
|
|
# elif defined( _WIN32 ) && !defined( VULKAN_HPP_NO_WIN32_PROTOTYPES )
|
2022-07-28 15:09:08 +00:00
|
|
|
typedef struct HINSTANCE__ * HINSTANCE;
|
|
|
|
# if defined( _WIN64 )
|
|
|
|
typedef int64_t( __stdcall * FARPROC )();
|
|
|
|
# else
|
|
|
|
typedef int( __stdcall * FARPROC )();
|
|
|
|
# endif
|
|
|
|
extern "C" __declspec( dllimport ) HINSTANCE __stdcall LoadLibraryA( char const * lpLibFileName );
|
|
|
|
extern "C" __declspec( dllimport ) int __stdcall FreeLibrary( HINSTANCE hLibModule );
|
|
|
|
extern "C" __declspec( dllimport ) FARPROC __stdcall GetProcAddress( HINSTANCE hModule, const char * lpProcName );
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined( VULKAN_HPP_HAS_SPACESHIP_OPERATOR )
|
|
|
|
# include <compare>
|
|
|
|
#endif
|
|
|
|
|
2023-09-07 13:20:10 +00:00
|
|
|
#if defined( VULKAN_HPP_SUPPORT_SPAN )
|
2022-07-28 15:09:08 +00:00
|
|
|
# include <span>
|
|
|
|
#endif
|