Merge pull request #1366 from asuessenbach/includes

Reduce number of included headers
This commit is contained in:
Andreas Süßenbach 2022-07-28 08:12:24 +02:00 committed by GitHub
commit 9bb1bb385a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 418 additions and 394 deletions

View File

@ -400,9 +400,13 @@ std::string VulkanHppGenerator::generateEnumsToString() const
VULKAN_HPP_INLINE std::string toHexString( uint32_t value ) VULKAN_HPP_INLINE std::string toHexString( uint32_t value )
{ {
#if ( ( 20 <= VULKAN_HPP_CPP_VERSION ) && __has_include( <format> ) )
return std::format( "{:x}", value );
#else
std::stringstream stream; std::stringstream stream;
stream << std::hex << value; stream << std::hex << value;
return stream.str(); return stream.str();
#endif
} }
${enumsToString} ${enumsToString}
@ -13377,7 +13381,6 @@ std::string toString( tinyxml2::XMLError error )
int main( int argc, char ** argv ) int main( int argc, char ** argv )
{ {
static const std::string classArrayProxy = R"( static const std::string classArrayProxy = R"(
#if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE )
template <typename T> template <typename T>
class ArrayProxy class ArrayProxy
{ {
@ -13664,7 +13667,6 @@ int main( int argc, char ** argv )
uint32_t m_count; uint32_t m_count;
T * m_ptr; T * m_ptr;
}; };
#endif
)"; )";
static const std::string classArrayWrapper = R"( static const std::string classArrayWrapper = R"(
@ -14592,8 +14594,7 @@ int main( int argc, char ** argv )
uniqueToRaw( std::vector<UniqueType> const & handles ) uniqueToRaw( std::vector<UniqueType> const & handles )
{ {
std::vector<typename UniqueType::element_type> newBuffer( handles.size() ); std::vector<typename UniqueType::element_type> newBuffer( handles.size() );
std::transform( std::transform( handles.begin(), handles.end(), newBuffer.begin(), []( UniqueType const & handle ) { return handle.get(); } );
handles.begin(), handles.end(), newBuffer.begin(), []( UniqueType const & handle ) { return handle.get(); } );
return newBuffer; return newBuffer;
} }
@ -15010,22 +15011,11 @@ int main( int argc, char ** argv )
# error "vulkan.hpp needs at least c++ standard version 11" # error "vulkan.hpp needs at least c++ standard version 11"
#endif #endif
#include <algorithm> #include <array> // ArrayWrapperND
#include <array> #include <string> // std::string
#include <cstddef>
#include <cstdint>
#include <cstring>
#include <functional>
#include <initializer_list>
#include <sstream>
#include <string>
#include <system_error>
#include <tuple>
#include <type_traits>
#include <utility>
#include <vulkan/vulkan.h> #include <vulkan/vulkan.h>
#if 17 <= VULKAN_HPP_CPP_VERSION #if 17 <= VULKAN_HPP_CPP_VERSION
# include <string_view> # include <string_view> // std::string_view
#endif #endif
#if defined( VULKAN_HPP_DISABLE_ENHANCED_MODE ) #if defined( VULKAN_HPP_DISABLE_ENHANCED_MODE )
@ -15033,8 +15023,16 @@ int main( int argc, char ** argv )
# define VULKAN_HPP_NO_SMART_HANDLE # define VULKAN_HPP_NO_SMART_HANDLE
# endif # endif
#else #else
# include <memory> # include <tuple> // std::tie
# include <vector> # include <vector> // std::vector
#endif
#if !defined( VULKAN_HPP_NO_EXCEPTIONS )
# include <system_error> // std::is_error_code_enum
#endif
#if !defined( VULKAN_HPP_NO_SMART_HANDLE )
# include <algorithm> // std::transform
#endif #endif
#if defined( VULKAN_HPP_NO_CONSTRUCTORS ) #if defined( VULKAN_HPP_NO_CONSTRUCTORS )
@ -15366,6 +15364,8 @@ namespace VULKAN_HPP_NAMESPACE
#ifndef VULKAN_STRUCTS_HPP #ifndef VULKAN_STRUCTS_HPP
# define VULKAN_STRUCTS_HPP # define VULKAN_STRUCTS_HPP
#include <cstring> // strcmp
namespace VULKAN_HPP_NAMESPACE namespace VULKAN_HPP_NAMESPACE
{ {
)"; )";
@ -15408,12 +15408,13 @@ namespace VULKAN_HPP_NAMESPACE
"# define VULKAN_HPP_TYPESAFE_CONVERSION\n" "# define VULKAN_HPP_TYPESAFE_CONVERSION\n"
"# endif\n" "# endif\n"
"#endif\n"; "#endif\n";
str += defines + "\n" + "namespace VULKAN_HPP_NAMESPACE\n" + "{" + classArrayProxy + classArrayWrapper + classFlags + classOptional + classStructureChain + str += defines + "\n" + "namespace VULKAN_HPP_NAMESPACE\n" + "{" + classArrayWrapper + classFlags + "#if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE )\n" +
classUniqueHandle; classArrayProxy + classOptional + classStructureChain + classUniqueHandle + "#endif // VULKAN_HPP_DISABLE_ENHANCED_MODE\n";
str += dispatchLoaderBase; str += dispatchLoaderBase;
str += generator.generateDispatchLoaderStatic(); str += generator.generateDispatchLoaderStatic();
str += dispatchLoaderDefault; str += dispatchLoaderDefault;
str += classObjectDestroy + classObjectFree + classObjectRelease + classPoolFree + "\n"; str += "#if !defined( VULKAN_HPP_NO_SMART_HANDLE )\n" + classObjectDestroy + classObjectFree + classObjectRelease + classPoolFree + "\n" +
"#endif // !VULKAN_HPP_NO_SMART_HANDLE\n";
str += generator.generateBaseTypes(); str += generator.generateBaseTypes();
str += R"(} // namespace VULKAN_HPP_NAMESPACE str += R"(} // namespace VULKAN_HPP_NAMESPACE
@ -15450,7 +15451,7 @@ namespace VULKAN_HPP_NAMESPACE
namespace VULKAN_HPP_NAMESPACE namespace VULKAN_HPP_NAMESPACE
{ {
)"; )";
str += generator.generateStructExtendsStructs(); str += "#if !defined( VULKAN_HPP_DISABLE_ENHANCED_MODE )\n" + generator.generateStructExtendsStructs() + "#endif // VULKAN_HPP_DISABLE_ENHANCED_MODE\n";
str += dynamicLoader; str += dynamicLoader;
str += generator.generateDispatchLoaderDynamic(); str += generator.generateDispatchLoaderDynamic();
str += str +=
@ -15501,6 +15502,12 @@ namespace std
#include <vulkan/vulkan_enums.hpp> #include <vulkan/vulkan_enums.hpp>
#if ( ( 20 <= VULKAN_HPP_CPP_VERSION ) && __has_include( <format> ) )
# include <format> // std::format
#else
# include <sstream> // std::stringstream
#endif
namespace VULKAN_HPP_NAMESPACE namespace VULKAN_HPP_NAMESPACE
{ {
)"; )";

View File

@ -22,6 +22,7 @@
#include <iostream> #include <iostream>
#include <limits> #include <limits>
#include <map> #include <map>
#include <memory> // std::unique_ptr
namespace vk namespace vk
{ {

File diff suppressed because it is too large Load Diff

View File

@ -8,6 +8,8 @@
#ifndef VULKAN_STRUCTS_HPP #ifndef VULKAN_STRUCTS_HPP
#define VULKAN_STRUCTS_HPP #define VULKAN_STRUCTS_HPP
#include <cstring> // strcmp
namespace VULKAN_HPP_NAMESPACE namespace VULKAN_HPP_NAMESPACE
{ {
//=============== //===============

View File

@ -10,6 +10,12 @@
#include <vulkan/vulkan_enums.hpp> #include <vulkan/vulkan_enums.hpp>
#if ( ( 20 <= VULKAN_HPP_CPP_VERSION ) && __has_include( <format> ) )
# include <format> // std::format
#else
# include <sstream> // std::stringstream
#endif
namespace VULKAN_HPP_NAMESPACE namespace VULKAN_HPP_NAMESPACE
{ {
//========================== //==========================
@ -2989,9 +2995,13 @@ namespace VULKAN_HPP_NAMESPACE
VULKAN_HPP_INLINE std::string toHexString( uint32_t value ) VULKAN_HPP_INLINE std::string toHexString( uint32_t value )
{ {
#if ( ( 20 <= VULKAN_HPP_CPP_VERSION ) && __has_include( <format> ) )
return std::format( "{:x}", value );
#else
std::stringstream stream; std::stringstream stream;
stream << std::hex << value; stream << std::hex << value;
return stream.str(); return stream.str();
#endif
} }
//=== VK_VERSION_1_0 === //=== VK_VERSION_1_0 ===