Add new extension inspection functions getExtensionPromotedTo() and isExtensionPromoted() (#1553)

This commit is contained in:
Andreas Süßenbach 2023-04-04 10:45:15 +02:00 committed by GitHub
parent 678295aa75
commit be1bb7645f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 499 additions and 3 deletions

View File

@ -136,8 +136,10 @@ namespace VULKAN_HPP_NAMESPACE
//====================================== //======================================
VULKAN_HPP_CONSTEXPR_20 std::string getExtensionDeprecatedBy( std::string const & name ); VULKAN_HPP_CONSTEXPR_20 std::string getExtensionDeprecatedBy( std::string const & name );
VULKAN_HPP_CONSTEXPR_20 std::string getExtensionPromotedTo( std::string const & name );
VULKAN_HPP_CONSTEXPR_20 bool isDeviceExtension( std::string const & name ); VULKAN_HPP_CONSTEXPR_20 bool isDeviceExtension( std::string const & name );
VULKAN_HPP_CONSTEXPR_20 bool isExtensionDeprecated( std::string const & name ); VULKAN_HPP_CONSTEXPR_20 bool isExtensionDeprecated( std::string const & name );
VULKAN_HPP_CONSTEXPR_20 bool isExtensionPromoted( std::string const & name );
VULKAN_HPP_CONSTEXPR_20 bool isInstanceExtension( std::string const & name ); VULKAN_HPP_CONSTEXPR_20 bool isInstanceExtension( std::string const & name );
//===================================================== //=====================================================
@ -150,6 +152,11 @@ namespace VULKAN_HPP_NAMESPACE
${deprecatedBy} ${deprecatedBy}
} }
VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 std::string getExtensionPromotedTo( std::string const & name )
{
${promotedTo}
}
VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 bool isDeviceExtension( std::string const & name ) VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 bool isDeviceExtension( std::string const & name )
{ {
return ${deviceTest}; return ${deviceTest};
@ -161,6 +168,11 @@ namespace VULKAN_HPP_NAMESPACE
return ${deprecatedTest}; return ${deprecatedTest};
} }
VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 bool isExtensionPromoted( std::string const & name )
{
return ${promotedTest};
}
VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 bool isInstanceExtension( std::string const & name ) VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 bool isInstanceExtension( std::string const & name )
{ {
return ${instanceTest}; return ${instanceTest};
@ -177,6 +189,8 @@ namespace VULKAN_HPP_NAMESPACE
{ "deprecatedTest", generateExtensionDeprecatedTest() }, { "deprecatedTest", generateExtensionDeprecatedTest() },
{ "instanceTest", generateExtensionTypeTest( "instance" ) }, { "instanceTest", generateExtensionTypeTest( "instance" ) },
{ "licenseHeader", m_vulkanLicenseHeader }, { "licenseHeader", m_vulkanLicenseHeader },
{ "promotedTest", generateExtensionPromotedTest() },
{ "promotedTo", generateExtensionPromotedTo() },
{ "voidName", ( m_api == "vulkan" ) ? "" : "(void)name;" } } ); { "voidName", ( m_api == "vulkan" ) ? "" : "(void)name;" } } );
writeToFile( str, vulkan_extension_inspection_hpp ); writeToFile( str, vulkan_extension_inspection_hpp );
@ -5624,6 +5638,50 @@ std::string VulkanHppGenerator::generateExtensionDeprecatedTest() const
return deprecatedTest; return deprecatedTest;
} }
std::string VulkanHppGenerator::generateExtensionPromotedTest() const
{
std::string promotedTest, previousEnter, previousLeave;
for ( auto const & extension : m_extensions )
{
if ( !extension.promotedTo.empty() )
{
auto [enter, leave] = generateProtection( getProtectFromTitle( extension.name ) );
promotedTest += ( ( previousEnter != enter ) ? ( "\n" + previousLeave + enter ) : "\n" ) + "( name == \"" + extension.name + "\" ) || ";
previousEnter = enter;
previousLeave = leave;
}
}
assert( promotedTest.ends_with( " || " ) );
promotedTest = promotedTest.substr( 0, promotedTest.length() - 4 );
if ( !previousLeave.empty() )
{
promotedTest += "\n" + previousLeave;
}
return promotedTest;
}
std::string VulkanHppGenerator::generateExtensionPromotedTo() const
{
std::string promotedTo, previousEnter, previousLeave;
for ( auto const & extension : m_extensions )
{
if ( !extension.promotedTo.empty() )
{
auto [enter, leave] = generateProtection( getProtectFromTitle( extension.name ) );
promotedTo += ( ( previousEnter != enter ) ? ( "\n" + previousLeave + enter ) : "\n" ) + " if ( name == \"" + extension.name + "\" ) { return \"" +
extension.promotedTo + "\"; }";
previousEnter = enter;
previousLeave = leave;
}
}
if ( !previousLeave.empty() )
{
promotedTo += "\n" + previousLeave;
}
promotedTo += "\n return \"\";";
return promotedTo;
}
std::string VulkanHppGenerator::generateExtensionTypeTest( std::string const & type ) const std::string VulkanHppGenerator::generateExtensionTypeTest( std::string const & type ) const
{ {
std::string typeTest, previousEnter, previousLeave; std::string typeTest, previousEnter, previousLeave;

View File

@ -695,6 +695,8 @@ private:
std::string generateEnumValueName( std::string const & enumName, std::string const & valueName, bool bitmask ) const; std::string generateEnumValueName( std::string const & enumName, std::string const & valueName, bool bitmask ) const;
std::string generateExtensionDeprecatedBy() const; std::string generateExtensionDeprecatedBy() const;
std::string generateExtensionDeprecatedTest() const; std::string generateExtensionDeprecatedTest() const;
std::string generateExtensionPromotedTest() const;
std::string generateExtensionPromotedTo() const;
std::string generateExtensionTypeTest( std::string const & type ) const; std::string generateExtensionTypeTest( std::string const & type ) const;
std::string generateFailureCheck( std::vector<std::string> const & successCodes ) const; std::string generateFailureCheck( std::vector<std::string> const & successCodes ) const;
std::string generateFormatTraits() const; std::string generateFormatTraits() const;

View File

@ -12,19 +12,32 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
// //
// VulkanHpp Samples : FormatTraits // VulkanHpp Tests : ExtensionInspection
// Compile test on using format traits functions // Compile test on using extension inspection functions
#include <vulkan/vulkan_extension_inspection.hpp> #include <vulkan/vulkan_extension_inspection.hpp>
int main( int /*argc*/, char ** /*argv*/ ) int main( int /*argc*/, char ** /*argv*/ )
{ {
#if ( 201907 <= __cpp_constexpr ) && ( !defined( __GNUC__ ) || ( 110300 < GCC_VERSION ) )
static_assert( vk::isInstanceExtension( VK_KHR_SURFACE_EXTENSION_NAME ), "static_assert test failed" );
static_assert( vk::isDeviceExtension( VK_KHR_SWAPCHAIN_EXTENSION_NAME ), "static assert test failed" );
static_assert( vk::isExtensionDeprecated( VK_EXT_DEBUG_REPORT_EXTENSION_NAME ), "static assert test failed" );
static_assert( vk::getExtensionDeprecatedBy( VK_EXT_DEBUG_REPORT_EXTENSION_NAME ) == VK_EXT_DEBUG_UTILS_EXTENSION_NAME, "static assert test failed" );
static_assert( vk::isExtensionPromoted( VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_EXTENSION_NAME ), "static assert test failed" );
static_assert( vk::getExtensionPromotedTo( VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_EXTENSION_NAME ) == "VK_VERSION_1_2", "static assert test failed" );
#endif
bool ok = vk::isInstanceExtension( VK_KHR_SURFACE_EXTENSION_NAME ) && vk::isDeviceExtension( VK_KHR_SWAPCHAIN_EXTENSION_NAME ); bool ok = vk::isInstanceExtension( VK_KHR_SURFACE_EXTENSION_NAME ) && vk::isDeviceExtension( VK_KHR_SWAPCHAIN_EXTENSION_NAME );
(void)ok; // keep the compiler silent (void)ok; // keep the compiler silent
if ( vk::isExtensionDeprecated( VK_EXT_DEBUG_REPORT_EXTENSION_NAME ) ) if ( vk::isExtensionDeprecated( VK_EXT_DEBUG_REPORT_EXTENSION_NAME ) )
{ {
std::string ext = vk::getExtensionDeprecatedBy( VK_EXT_DEBUG_REPORT_EXTENSION_NAME ); std::string ext = vk::getExtensionDeprecatedBy( VK_EXT_DEBUG_REPORT_EXTENSION_NAME );
} }
if ( vk::isExtensionPromoted( VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_EXTENSION_NAME ) )
{
std::string ext = vk::getExtensionPromotedTo( VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_EXTENSION_NAME );
}
return 0; return 0;
} }

View File

@ -17,8 +17,10 @@ namespace VULKAN_HPP_NAMESPACE
//====================================== //======================================
VULKAN_HPP_CONSTEXPR_20 std::string getExtensionDeprecatedBy( std::string const & name ); VULKAN_HPP_CONSTEXPR_20 std::string getExtensionDeprecatedBy( std::string const & name );
VULKAN_HPP_CONSTEXPR_20 std::string getExtensionPromotedTo( std::string const & name );
VULKAN_HPP_CONSTEXPR_20 bool isDeviceExtension( std::string const & name ); VULKAN_HPP_CONSTEXPR_20 bool isDeviceExtension( std::string const & name );
VULKAN_HPP_CONSTEXPR_20 bool isExtensionDeprecated( std::string const & name ); VULKAN_HPP_CONSTEXPR_20 bool isExtensionDeprecated( std::string const & name );
VULKAN_HPP_CONSTEXPR_20 bool isExtensionPromoted( std::string const & name );
VULKAN_HPP_CONSTEXPR_20 bool isInstanceExtension( std::string const & name ); VULKAN_HPP_CONSTEXPR_20 bool isInstanceExtension( std::string const & name );
//===================================================== //=====================================================
@ -96,6 +98,325 @@ namespace VULKAN_HPP_NAMESPACE
return ""; return "";
} }
VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 std::string getExtensionPromotedTo( std::string const & name )
{
if ( name == "VK_KHR_sampler_mirror_clamp_to_edge" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_EXT_debug_marker" )
{
return "VK_EXT_debug_utils";
}
if ( name == "VK_AMD_draw_indirect_count" )
{
return "VK_KHR_draw_indirect_count";
}
if ( name == "VK_KHR_dynamic_rendering" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_KHR_multiview" )
{
return "VK_VERSION_1_1";
}
#if defined( VK_USE_PLATFORM_WIN32_KHR )
if ( name == "VK_NV_win32_keyed_mutex" )
{
return "VK_KHR_win32_keyed_mutex";
}
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
if ( name == "VK_KHR_get_physical_device_properties2" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_device_group" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_shader_draw_parameters" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_EXT_texture_compression_astc_hdr" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_KHR_maintenance1" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_device_group_creation" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_external_memory_capabilities" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_external_memory" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_external_semaphore_capabilities" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_external_semaphore" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_shader_float16_int8" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_KHR_16bit_storage" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_descriptor_update_template" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_imageless_framebuffer" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_KHR_create_renderpass2" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_KHR_external_fence_capabilities" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_external_fence" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_maintenance2" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_variable_pointers" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_dedicated_allocation" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_EXT_sampler_filter_minmax" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_KHR_storage_buffer_storage_class" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_EXT_inline_uniform_block" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_KHR_relaxed_block_layout" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_get_memory_requirements2" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_image_format_list" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_KHR_sampler_ycbcr_conversion" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_bind_memory2" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_EXT_descriptor_indexing" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_EXT_shader_viewport_index_layer" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_KHR_maintenance3" )
{
return "VK_VERSION_1_1";
}
if ( name == "VK_KHR_draw_indirect_count" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_EXT_global_priority" )
{
return "VK_KHR_global_priority";
}
if ( name == "VK_KHR_shader_subgroup_extended_types" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_KHR_8bit_storage" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_KHR_shader_atomic_int64" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_EXT_pipeline_creation_feedback" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_KHR_driver_properties" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_KHR_shader_float_controls" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_KHR_depth_stencil_resolve" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_NV_fragment_shader_barycentric" )
{
return "VK_KHR_fragment_shader_barycentric";
}
if ( name == "VK_KHR_timeline_semaphore" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_KHR_vulkan_memory_model" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_KHR_shader_terminate_invocation" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_scalar_block_layout" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_EXT_subgroup_size_control" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_KHR_spirv_1_4" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_KHR_separate_depth_stencil_layouts" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_EXT_tooling_info" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_separate_stencil_usage" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_KHR_uniform_buffer_standard_layout" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_KHR_buffer_device_address" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_EXT_host_query_reset" )
{
return "VK_VERSION_1_2";
}
if ( name == "VK_EXT_extended_dynamic_state" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_shader_demote_to_helper_invocation" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_KHR_shader_integer_dot_product" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_texel_buffer_alignment" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_KHR_shader_non_semantic_info" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_private_data" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_pipeline_creation_cache_control" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_KHR_synchronization2" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_KHR_zero_initialize_workgroup_memory" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_ycbcr_2plane_444_formats" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_image_robustness" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_KHR_copy_commands2" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_4444_formats" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_ARM_rasterization_order_attachment_access" )
{
return "VK_EXT_rasterization_order_attachment_access";
}
if ( name == "VK_VALVE_mutable_descriptor_type" )
{
return "VK_EXT_mutable_descriptor_type";
}
if ( name == "VK_KHR_format_feature_flags2" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_extended_dynamic_state2" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_global_priority_query" )
{
return "VK_KHR_global_priority";
}
if ( name == "VK_KHR_maintenance4" )
{
return "VK_VERSION_1_3";
}
return "";
}
VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 bool isDeviceExtension( std::string const & name ) VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 bool isDeviceExtension( std::string const & name )
{ {
return ( name == "VK_KHR_swapchain" ) || ( name == "VK_KHR_display_swapchain" ) || ( name == "VK_NV_glsl_shader" ) || return ( name == "VK_KHR_swapchain" ) || ( name == "VK_KHR_display_swapchain" ) || ( name == "VK_NV_glsl_shader" ) ||
@ -260,6 +581,40 @@ namespace VULKAN_HPP_NAMESPACE
( name == "VK_AMD_gpu_shader_int16" ) || ( name == "VK_EXT_buffer_device_address" ); ( name == "VK_AMD_gpu_shader_int16" ) || ( name == "VK_EXT_buffer_device_address" );
} }
VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 bool isExtensionPromoted( std::string const & name )
{
return ( name == "VK_KHR_sampler_mirror_clamp_to_edge" ) || ( name == "VK_EXT_debug_marker" ) || ( name == "VK_AMD_draw_indirect_count" ) ||
( name == "VK_KHR_dynamic_rendering" ) || ( name == "VK_KHR_multiview" ) ||
#if defined( VK_USE_PLATFORM_WIN32_KHR )
( name == "VK_NV_win32_keyed_mutex" ) ||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
( name == "VK_KHR_get_physical_device_properties2" ) || ( name == "VK_KHR_device_group" ) || ( name == "VK_KHR_shader_draw_parameters" ) ||
( name == "VK_EXT_texture_compression_astc_hdr" ) || ( name == "VK_KHR_maintenance1" ) || ( name == "VK_KHR_device_group_creation" ) ||
( name == "VK_KHR_external_memory_capabilities" ) || ( name == "VK_KHR_external_memory" ) || ( name == "VK_KHR_external_semaphore_capabilities" ) ||
( name == "VK_KHR_external_semaphore" ) || ( name == "VK_KHR_shader_float16_int8" ) || ( name == "VK_KHR_16bit_storage" ) ||
( name == "VK_KHR_descriptor_update_template" ) || ( name == "VK_KHR_imageless_framebuffer" ) || ( name == "VK_KHR_create_renderpass2" ) ||
( name == "VK_KHR_external_fence_capabilities" ) || ( name == "VK_KHR_external_fence" ) || ( name == "VK_KHR_maintenance2" ) ||
( name == "VK_KHR_variable_pointers" ) || ( name == "VK_KHR_dedicated_allocation" ) || ( name == "VK_EXT_sampler_filter_minmax" ) ||
( name == "VK_KHR_storage_buffer_storage_class" ) || ( name == "VK_EXT_inline_uniform_block" ) || ( name == "VK_KHR_relaxed_block_layout" ) ||
( name == "VK_KHR_get_memory_requirements2" ) || ( name == "VK_KHR_image_format_list" ) || ( name == "VK_KHR_sampler_ycbcr_conversion" ) ||
( name == "VK_KHR_bind_memory2" ) || ( name == "VK_EXT_descriptor_indexing" ) || ( name == "VK_EXT_shader_viewport_index_layer" ) ||
( name == "VK_KHR_maintenance3" ) || ( name == "VK_KHR_draw_indirect_count" ) || ( name == "VK_EXT_global_priority" ) ||
( name == "VK_KHR_shader_subgroup_extended_types" ) || ( name == "VK_KHR_8bit_storage" ) || ( name == "VK_KHR_shader_atomic_int64" ) ||
( name == "VK_EXT_pipeline_creation_feedback" ) || ( name == "VK_KHR_driver_properties" ) || ( name == "VK_KHR_shader_float_controls" ) ||
( name == "VK_KHR_depth_stencil_resolve" ) || ( name == "VK_NV_fragment_shader_barycentric" ) || ( name == "VK_KHR_timeline_semaphore" ) ||
( name == "VK_KHR_vulkan_memory_model" ) || ( name == "VK_KHR_shader_terminate_invocation" ) || ( name == "VK_EXT_scalar_block_layout" ) ||
( name == "VK_EXT_subgroup_size_control" ) || ( name == "VK_KHR_spirv_1_4" ) || ( name == "VK_KHR_separate_depth_stencil_layouts" ) ||
( name == "VK_EXT_tooling_info" ) || ( name == "VK_EXT_separate_stencil_usage" ) || ( name == "VK_KHR_uniform_buffer_standard_layout" ) ||
( name == "VK_KHR_buffer_device_address" ) || ( name == "VK_EXT_host_query_reset" ) || ( name == "VK_EXT_extended_dynamic_state" ) ||
( name == "VK_EXT_shader_demote_to_helper_invocation" ) || ( name == "VK_KHR_shader_integer_dot_product" ) ||
( name == "VK_EXT_texel_buffer_alignment" ) || ( name == "VK_KHR_shader_non_semantic_info" ) || ( name == "VK_EXT_private_data" ) ||
( name == "VK_EXT_pipeline_creation_cache_control" ) || ( name == "VK_KHR_synchronization2" ) ||
( name == "VK_KHR_zero_initialize_workgroup_memory" ) || ( name == "VK_EXT_ycbcr_2plane_444_formats" ) || ( name == "VK_EXT_image_robustness" ) ||
( name == "VK_KHR_copy_commands2" ) || ( name == "VK_EXT_4444_formats" ) || ( name == "VK_ARM_rasterization_order_attachment_access" ) ||
( name == "VK_VALVE_mutable_descriptor_type" ) || ( name == "VK_KHR_format_feature_flags2" ) || ( name == "VK_EXT_extended_dynamic_state2" ) ||
( name == "VK_EXT_global_priority_query" ) || ( name == "VK_KHR_maintenance4" );
}
VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 bool isInstanceExtension( std::string const & name ) VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 bool isInstanceExtension( std::string const & name )
{ {
return ( name == "VK_KHR_surface" ) || ( name == "VK_KHR_display" ) || return ( name == "VK_KHR_surface" ) || ( name == "VK_KHR_display" ) ||

View File

@ -17,8 +17,10 @@ namespace VULKAN_HPP_NAMESPACE
//====================================== //======================================
VULKAN_HPP_CONSTEXPR_20 std::string getExtensionDeprecatedBy( std::string const & name ); VULKAN_HPP_CONSTEXPR_20 std::string getExtensionDeprecatedBy( std::string const & name );
VULKAN_HPP_CONSTEXPR_20 std::string getExtensionPromotedTo( std::string const & name );
VULKAN_HPP_CONSTEXPR_20 bool isDeviceExtension( std::string const & name ); VULKAN_HPP_CONSTEXPR_20 bool isDeviceExtension( std::string const & name );
VULKAN_HPP_CONSTEXPR_20 bool isExtensionDeprecated( std::string const & name ); VULKAN_HPP_CONSTEXPR_20 bool isExtensionDeprecated( std::string const & name );
VULKAN_HPP_CONSTEXPR_20 bool isExtensionPromoted( std::string const & name );
VULKAN_HPP_CONSTEXPR_20 bool isInstanceExtension( std::string const & name ); VULKAN_HPP_CONSTEXPR_20 bool isInstanceExtension( std::string const & name );
//===================================================== //=====================================================
@ -39,6 +41,63 @@ namespace VULKAN_HPP_NAMESPACE
return ""; return "";
} }
VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 std::string getExtensionPromotedTo( std::string const & name )
{
if ( name == "VK_EXT_texture_compression_astc_hdr" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_global_priority" )
{
return "VK_KHR_global_priority";
}
if ( name == "VK_KHR_shader_terminate_invocation" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_subgroup_size_control" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_extended_dynamic_state" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_shader_demote_to_helper_invocation" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_texel_buffer_alignment" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_KHR_synchronization2" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_ycbcr_2plane_444_formats" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_image_robustness" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_KHR_copy_commands2" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_4444_formats" )
{
return "VK_VERSION_1_3";
}
if ( name == "VK_EXT_extended_dynamic_state2" )
{
return "VK_VERSION_1_3";
}
return "";
}
VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 bool isDeviceExtension( std::string const & name ) VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 bool isDeviceExtension( std::string const & name )
{ {
return ( name == "VK_KHR_swapchain" ) || ( name == "VK_KHR_display_swapchain" ) || ( name == "VK_EXT_depth_range_unrestricted" ) || return ( name == "VK_KHR_swapchain" ) || ( name == "VK_KHR_display_swapchain" ) || ( name == "VK_EXT_depth_range_unrestricted" ) ||
@ -80,6 +139,15 @@ namespace VULKAN_HPP_NAMESPACE
false; false;
} }
VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 bool isExtensionPromoted( std::string const & name )
{
return ( name == "VK_EXT_texture_compression_astc_hdr" ) || ( name == "VK_EXT_global_priority" ) || ( name == "VK_KHR_shader_terminate_invocation" ) ||
( name == "VK_EXT_subgroup_size_control" ) || ( name == "VK_EXT_extended_dynamic_state" ) ||
( name == "VK_EXT_shader_demote_to_helper_invocation" ) || ( name == "VK_EXT_texel_buffer_alignment" ) || ( name == "VK_KHR_synchronization2" ) ||
( name == "VK_EXT_ycbcr_2plane_444_formats" ) || ( name == "VK_EXT_image_robustness" ) || ( name == "VK_KHR_copy_commands2" ) ||
( name == "VK_EXT_4444_formats" ) || ( name == "VK_EXT_extended_dynamic_state2" );
}
VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 bool isInstanceExtension( std::string const & name ) VULKAN_HPP_INLINE VULKAN_HPP_CONSTEXPR_20 bool isInstanceExtension( std::string const & name )
{ {
return ( name == "VK_KHR_surface" ) || ( name == "VK_KHR_display" ) || ( name == "VK_EXT_direct_mode_display" ) || return ( name == "VK_KHR_surface" ) || ( name == "VK_KHR_display" ) || ( name == "VK_EXT_direct_mode_display" ) ||