You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I'm trying to generate updated bindings for the vulkan 1.3 spec (vulkan 1.3.224 to be precise).
However, it seems that while most of the API is generated fine, values for some enums are missing. I only noticed because I am trying to use the KHR_synchronization2 functions and it seems that the extended enum values are missing from the header file.
The flags enum itself are generated fine:
but there are no values for, for example, VK_ACCESS_2_SHADER_WRITE_BIT or VK_PIPELINE_STAGE_2_TOP_OF_PIPE_BIT are missing. The spec says that the bit values for the "old" values are the same as the new ones, so in my case I can just use VK_ACCESS_SHADER_WRITE_BIT for now so it's not a big deal, just thought I'd report this.
Hi! I'm trying to generate updated bindings for the vulkan 1.3 spec (vulkan 1.3.224 to be precise).
However, it seems that while most of the API is generated fine, values for some enums are missing. I only noticed because I am trying to use the
KHR_synchronization2
functions and it seems that the extended enum values are missing from the header file.The flags enum itself are generated fine:
but there are no values for, for example,
VK_ACCESS_2_SHADER_WRITE_BIT
orVK_PIPELINE_STAGE_2_TOP_OF_PIPE_BIT
are missing. The spec says that the bit values for the "old" values are the same as the new ones, so in my case I can just useVK_ACCESS_SHADER_WRITE_BIT
for now so it's not a big deal, just thought I'd report this.I'm using the following commandline:
with the
vulkan-1.3.224_ext.txt
file:The text was updated successfully, but these errors were encountered: