Merge pull request #242 from RandomShaper/fix_nullability

Add missing nullability qualifier
This commit is contained in:
Adam Sawicki 2022-02-24 11:46:03 +01:00 committed by GitHub
commit dc3f6bb915
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1406,7 +1406,7 @@ typedef struct VmaDefragmentationMove
/// Allocation that should be moved.
VmaAllocation VMA_NOT_NULL srcAllocation;
/// Destination memory block where the allocation should be moved.
VkDeviceMemory dstMemory;
VkDeviceMemory VMA_NOT_NULL_NON_DISPATCHABLE dstMemory;
/// Destination offset where the allocation should be moved.
VkDeviceSize dstOffset;
/// Internal data used by VMA. Do not use or modify!