VulkanMemoryAllocator 0.7.3 → 0.7.4
raw patch · 6 files changed
+24/−11 lines, 6 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- LICENSE +2/−2
- VulkanMemoryAllocator.cabal +2/−2
- VulkanMemoryAllocator/include/vk_mem_alloc.h +4/−0
- changelog.md +3/−0
- package.yaml +2/−2
- src/VulkanMemoryAllocator.hs +11/−5
LICENSE view
@@ -1,4 +1,4 @@-Copyright Joe Hermaszewski (c) 2020+Copyright Ellie Hermaszewska (c) 2020 All rights reserved. @@ -13,7 +13,7 @@ disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of Joe Hermaszewski nor the names of other+ * Neither the name of Ellie Hermaszewska nor the names of other contributors may be used to endorse or promote products derived from this software without specific prior written permission.
VulkanMemoryAllocator.cabal view
@@ -5,12 +5,12 @@ -- see: https://github.com/sol/hpack name: VulkanMemoryAllocator-version: 0.7.3+version: 0.7.4 synopsis: Bindings to the VulkanMemoryAllocator library category: Graphics homepage: https://github.com/expipiplus1/vulkan#readme bug-reports: https://github.com/expipiplus1/vulkan/issues-maintainer: Joe Hermaszewski <live.long.and.prosper@monoid.al>+maintainer: Ellie Hermaszewska <live.long.and.prosper@monoid.al> license: BSD-3-Clause license-file: LICENSE build-type: Simple
VulkanMemoryAllocator/include/vk_mem_alloc.h view
@@ -461,11 +461,15 @@ PFN_vkDestroyImage VMA_NULLABLE vkDestroyImage; PFN_vkCmdCopyBuffer VMA_NULLABLE vkCmdCopyBuffer; #if VMA_DEDICATED_ALLOCATION || VMA_VULKAN_VERSION >= 1001000 + /// Fetch "vkGetBufferMemoryRequirements2" on Vulkan >= 1.1, fetch "vkGetBufferMemoryRequirements2KHR" when using VK_KHR_dedicated_allocation extension. PFN_vkGetBufferMemoryRequirements2KHR VMA_NULLABLE vkGetBufferMemoryRequirements2KHR; + /// Fetch "vkGetImageMemoryRequirements 2" on Vulkan >= 1.1, fetch "vkGetImageMemoryRequirements2KHR" when using VK_KHR_dedicated_allocation extension. PFN_vkGetImageMemoryRequirements2KHR VMA_NULLABLE vkGetImageMemoryRequirements2KHR; #endif #if VMA_BIND_MEMORY2 || VMA_VULKAN_VERSION >= 1001000 + /// Fetch "vkBindBufferMemory2" on Vulkan >= 1.1, fetch "vkBindBufferMemory2KHR" when using VK_KHR_bind_memory2 extension. PFN_vkBindBufferMemory2KHR VMA_NULLABLE vkBindBufferMemory2KHR; + /// Fetch "vkBindImageMemory2" on Vulkan >= 1.1, fetch "vkBindImageMemory2KHR" when using VK_KHR_bind_memory2 extension. PFN_vkBindImageMemory2KHR VMA_NULLABLE vkBindImageMemory2KHR; #endif #if VMA_MEMORY_BUDGET || VMA_VULKAN_VERSION >= 1001000
changelog.md view
@@ -2,6 +2,9 @@ ## WIP +## [0.7.4] - 2021-11-08+- Bump VMA, documentation changes+ ## [0.7.3] - 2021-11-03 - Bump VMA, Adds virtual allocation functionality
package.yaml view
@@ -1,8 +1,8 @@ name: VulkanMemoryAllocator-version: "0.7.3"+version: "0.7.4" synopsis: Bindings to the VulkanMemoryAllocator library category: Graphics-maintainer: Joe Hermaszewski <live.long.and.prosper@monoid.al>+maintainer: Ellie Hermaszewska <live.long.and.prosper@monoid.al> github: expipiplus1/vulkan extra-source-files: - readme.md
src/VulkanMemoryAllocator.hs view
@@ -3178,15 +3178,21 @@ vkDestroyImage :: PFN_vkDestroyImage , vkCmdCopyBuffer :: PFN_vkCmdCopyBuffer- , -- No documentation found for Nested "VmaVulkanFunctions" "vkGetBufferMemoryRequirements2KHR"+ , -- | Fetch \"vkGetBufferMemoryRequirements2\" on Vulkan >= 1.1, fetch+ -- \"vkGetBufferMemoryRequirements2KHR\" when using+ -- VK_KHR_dedicated_allocation extension. vkGetBufferMemoryRequirements2KHR :: PFN_vkGetBufferMemoryRequirements2KHR- , -- No documentation found for Nested "VmaVulkanFunctions" "vkGetImageMemoryRequirements2KHR"+ , -- | Fetch \"vkGetImageMemoryRequirements 2\" on Vulkan >= 1.1, fetch+ -- \"vkGetImageMemoryRequirements2KHR\" when using+ -- VK_KHR_dedicated_allocation extension. vkGetImageMemoryRequirements2KHR :: PFN_vkGetImageMemoryRequirements2KHR- , -- No documentation found for Nested "VmaVulkanFunctions" "vkBindBufferMemory2KHR"+ , -- | Fetch \"vkBindBufferMemory2\" on Vulkan >= 1.1, fetch+ -- \"vkBindBufferMemory2KHR\" when using VK_KHR_bind_memory2 extension. vkBindBufferMemory2KHR :: PFN_vkBindBufferMemory2KHR- , -- No documentation found for Nested "VmaVulkanFunctions" "vkBindImageMemory2KHR"+ , -- | Fetch \"vkBindImageMemory2\" on Vulkan >= 1.1, fetch+ -- \"vkBindImageMemory2KHR\" when using VK_KHR_bind_memory2 extension. vkBindImageMemory2KHR :: PFN_vkBindImageMemory2KHR- , -- No documentation found for Nested "VmaVulkanFunctions" "vkGetPhysicalDeviceMemoryProperties2KHR"+ , vkGetPhysicalDeviceMemoryProperties2KHR :: PFN_vkGetPhysicalDeviceMemoryProperties2KHR } deriving (Typeable, Eq)