Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add attribute to mark pNext pointers with the Vulkan struct they extend #347

Merged
merged 2 commits into from
Jul 4, 2023

Conversation

Rob2309
Copy link
Contributor

@Rob2309 Rob2309 commented Jun 30, 2023

This PR adds an attribute VMA_EXTENDS_VK_STRUCT similar to VMA_LEN_IF_NOT_NULL that allows detecting programatically which Vulkan structure will be extended with a given pNext argument.

For example:

VMA_CALL_PRE VkResult VMA_CALL_POST vmaBindBufferMemory2(
    VmaAllocator VMA_NOT_NULL allocator,
    VmaAllocation VMA_NOT_NULL allocation,
    VkDeviceSize allocationLocalOffset,
    VkBuffer VMA_NOT_NULL_NON_DISPATCHABLE buffer,
    const void* VMA_NULLABLE VMA_EXTENDS_VK_STRUCT(VkBindBufferMemoryInfoKHR) pNext);

with this attribute, generators can detect and enforce that pNext points to a structure that is allowed to be present in the pNext chain of VkBindBufferMemoryInfoKHR.

@adam-sawicki-a adam-sawicki-a added the investigating Still to be determined whether we work on this label Jun 30, 2023
@adam-sawicki-a
Copy link
Contributor

How is it going to be used? Can you please show an example of how it is used and why it is needed?

@Rob2309
Copy link
Contributor Author

Rob2309 commented Jun 30, 2023

How is it going to be used? Can you please show an example of how it is used and why it is needed?

I would take the ash rust bindings as an example.
In ash, there is a trait called ExtendsBindBufferMemoryInfo that is only implemented for structs that are allowed to be included in the pNext chain of VkBindBufferMemoryInfo as per the Vulkan specification.

With the attribute introduced above, a code generator could automatically generate a typesafe wrapper for vmaBindBufferMemory2 that only allows passing an allowed structure as pNext.

This could probably be somehow extracted from the documentation comment, but I think parsing a custom attribute is cleaner and simpler.

@adam-sawicki-a adam-sawicki-a merged commit 1f38a49 into GPUOpen-LibrariesAndSDKs:master Jul 4, 2023
@adam-sawicki-a adam-sawicki-a added next release To be done as soon as possible quality Code quality improvement e.g. refactoring and removed investigating Still to be determined whether we work on this labels Jul 4, 2023
@adam-sawicki-a
Copy link
Contributor

adam-sawicki-a commented Jul 4, 2023

OK, thank you for the explanation. I accepted and merged your change without any modifications. I hope it will be useful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
next release To be done as soon as possible quality Code quality improvement e.g. refactoring
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants