Export the C-type VkGeometryInstanceFlagsKHR in vulkan.cppm. (#2023)

This commit is contained in:
Andreas Süßenbach 2025-01-06 10:16:51 +01:00 committed by GitHub
parent 1055cb5e78
commit 0d89df69b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

View File

@ -781,6 +781,10 @@ export namespace std
{
${hashSpecializations}
}
// This VkFlags type is used as part of a bitfield in some structure.
// As it that can't be mimiced by vk-data types, we need to export just that!!
using VkGeometryInstanceFlagsKHR;
)";
auto const str = replaceWithMap( vulkanCppmTemplate,

View File

@ -8246,3 +8246,7 @@ export namespace std
struct hash<VULKAN_HPP_NAMESPACE::PhysicalDeviceVertexAttributeRobustnessFeaturesEXT>;
} // namespace std
// This VkFlags type is used as part of a bitfield in some structure.
// As it that can't be mimiced by vk-data types, we need to export just that!!
using VkGeometryInstanceFlagsKHR;