Skip to content

Commit

Permalink
update dependency versions & bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Neo-Zhixing committed Jan 31, 2024
1 parent 7918073 commit 6dfc8e2
Show file tree
Hide file tree
Showing 4 changed files with 130 additions and 36 deletions.
10 changes: 2 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "vk-mem"
version = "0.3.0"
authors = ["Graham Wihlidal <graham@wihlidal.ca>"]
authors = ["Graham Wihlidal <graham@wihlidal.ca>", "Zhixing Zhang <me@neoto.xin>"]
description = "Rust ffi bindings and idiomatic wrapper for AMD Vulkan Memory Allocator (VMA)"
homepage = "https://github.com/gwihlidal/vk-mem-rs"
repository = "https://github.com/gwihlidal/vk-mem-rs"
Expand All @@ -16,13 +16,7 @@ include = [
"build.rs",
"Cargo.toml",
"vendor/VulkanMemoryAllocator/include/vk_mem_alloc.h",
"vendor/Vulkan-Headers/include/vulkan/vk_platform.h",
"vendor/Vulkan-Headers/include/vulkan/vulkan_core.h",
"vendor/Vulkan-Headers/include/vk_video/vulkan_video_codec_h265std.h",
"vendor/Vulkan-Headers/include/vk_video/vulkan_video_codec_h265std_decode.h",
"vendor/Vulkan-Headers/include/vk_video/vulkan_video_codec_h264std.h",
"vendor/Vulkan-Headers/include/vk_video/vulkan_video_codec_h264std_decode.h",
"vendor/Vulkan-Headers/include/vulkan/vulkan.h",
"vendor/Vulkan-Headers/include",
"wrapper.cpp",
]
edition = "2021"
Expand Down
152 changes: 126 additions & 26 deletions src/ffi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@
#![allow(dead_code)]
use ash::vk::*;

pub type __uint8_t = ::std::os::raw::c_uchar;
pub type __int32_t = ::std::os::raw::c_int;
pub type __uint32_t = ::std::os::raw::c_uint;
pub type __uint64_t = ::std::os::raw::c_ulong;
#[repr(u32)]
#[repr(i32)]
#[doc = " Flags for created #VmaAllocator."]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub enum VmaAllocatorCreateFlagBits {
Expand Down Expand Up @@ -111,25 +107,20 @@ pub enum VmaAllocatorCreateFlagBits {
#[doc = "The value to be used for default priority is 0.5."]
#[doc = "For more details, see the documentation of the VK_EXT_memory_priority extension."]
VMA_ALLOCATOR_CREATE_EXT_MEMORY_PRIORITY_BIT = 64,
#[doc = "Enables usage of VK_EXT_memory_priority extension in the library."]
#[doc = "Enables usage of VK_KHR_maintenance4 extension in the library."]
#[doc = ""]
#[doc = "You may set this flag only if you found available and enabled this device extension,"]
#[doc = "along with `VkPhysicalDeviceMemoryPriorityFeaturesEXT::memoryPriority == VK_TRUE`,"]
#[doc = "while creating Vulkan device passed as VmaAllocatorCreateInfo::device."]
VMA_ALLOCATOR_CREATE_KHR_MAINTENANCE4_BIT = 128,
#[doc = "Enables usage of VK_KHR_maintenance4 extension in the library."]
#[doc = ""]
#[doc = "When this flag is used, VmaAllocationCreateInfo::priority and VmaPoolCreateInfo::priority"]
#[doc = "are used to set priorities of allocated Vulkan memory. Without it, these variables are ignored."]
#[doc = ""]
#[doc = "A priority must be a floating-point value between 0 and 1, indicating the priority of the allocation relative to other memory allocations."]
#[doc = "Larger values are higher priority. The granularity of the priorities is implementation-dependent."]
#[doc = "It is automatically passed to every call to `vkAllocateMemory` done by the library using structure `VkMemoryPriorityAllocateInfoEXT`."]
#[doc = "The value to be used for default priority is 0.5."]
#[doc = "For more details, see the documentation of the VK_EXT_memory_priority extension."]
#[doc = "You may set this flag only if you found available and enabled this device extension,"]
#[doc = "while creating Vulkan device passed as VmaAllocatorCreateInfo::device."]
VMA_ALLOCATOR_CREATE_FLAG_BITS_MAX_ENUM = 2147483647,
}
#[doc = " See #VmaAllocatorCreateFlagBits."]
pub type VmaAllocatorCreateFlags = Flags;
#[repr(u32)]
#[repr(i32)]
#[doc = " \\brief Intended usage of the allocated memory."]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub enum VmaMemoryUsage {
Expand Down Expand Up @@ -208,13 +199,16 @@ impl VmaAllocationCreateFlagBits {
pub const VMA_ALLOCATION_CREATE_STRATEGY_FIRST_FIT_BIT: VmaAllocationCreateFlagBits =
VmaAllocationCreateFlagBits::VMA_ALLOCATION_CREATE_STRATEGY_MIN_TIME_BIT;
}
#[repr(u32)]
#[repr(i32)]
#[doc = " Flags to be passed as VmaAllocationCreateInfo::flags."]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub enum VmaAllocationCreateFlagBits {
#[doc = " \\brief Set this flag if the allocation should have its own memory block."]
#[doc = ""]
#[doc = "Use it for special, big resources, like fullscreen images used as attachments."]
#[doc = ""]
#[doc = "If you use this flag while creating a buffer or an image, `VkMemoryDedicatedAllocateInfo`"]
#[doc = "structure is applied if possible."]
VMA_ALLOCATION_CREATE_DEDICATED_MEMORY_BIT = 1,
#[doc = " \\brief Set this flag to only try to allocate from existing `VkDeviceMemory` blocks and never create new such block."]
#[doc = ""]
Expand Down Expand Up @@ -284,7 +278,7 @@ pub enum VmaAllocationCreateFlagBits {
#[doc = "This includes allocations created in \\ref custom_memory_pools."]
#[doc = ""]
#[doc = "Declares that mapped memory can be read, written, and accessed in random order,"]
#[doc = "so a `HOST_CACHED` memory type is required."]
#[doc = "so a `HOST_CACHED` memory type is preferred."]
VMA_ALLOCATION_CREATE_HOST_ACCESS_RANDOM_BIT = 2048,
#[doc = "Together with #VMA_ALLOCATION_CREATE_HOST_ACCESS_SEQUENTIAL_WRITE_BIT or #VMA_ALLOCATION_CREATE_HOST_ACCESS_RANDOM_BIT,"]
#[doc = "it says that despite request for host access, a not-`HOST_VISIBLE` memory type can be selected"]
Expand Down Expand Up @@ -318,7 +312,7 @@ impl VmaPoolCreateFlagBits {
pub const VMA_POOL_CREATE_ALGORITHM_MASK: VmaPoolCreateFlagBits =
VmaPoolCreateFlagBits::VMA_POOL_CREATE_LINEAR_ALGORITHM_BIT;
}
#[repr(u32)]
#[repr(i32)]
#[doc = " Flags to be passed as VmaPoolCreateInfo::flags."]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub enum VmaPoolCreateFlagBits {
Expand Down Expand Up @@ -355,7 +349,7 @@ pub enum VmaPoolCreateFlagBits {
}
#[doc = " Flags to be passed as VmaPoolCreateInfo::flags. See #VmaPoolCreateFlagBits."]
pub type VmaPoolCreateFlags = Flags;
#[repr(u32)]
#[repr(i32)]
#[doc = " Flags to be passed as VmaDefragmentationInfo::flags."]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub enum VmaDefragmentationFlagBits {
Expand All @@ -374,7 +368,7 @@ pub enum VmaDefragmentationFlagBits {
}
#[doc = " See #VmaDefragmentationFlagBits."]
pub type VmaDefragmentationFlags = Flags;
#[repr(u32)]
#[repr(i32)]
#[doc = " Operation performed on single defragmentation move. See structure #VmaDefragmentationMove."]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub enum VmaDefragmentationMoveOperation {
Expand All @@ -389,7 +383,7 @@ impl VmaVirtualBlockCreateFlagBits {
pub const VMA_VIRTUAL_BLOCK_CREATE_ALGORITHM_MASK: VmaVirtualBlockCreateFlagBits =
VmaVirtualBlockCreateFlagBits::VMA_VIRTUAL_BLOCK_CREATE_LINEAR_ALGORITHM_BIT;
}
#[repr(u32)]
#[repr(i32)]
#[doc = " Flags to be passed as VmaVirtualBlockCreateInfo::flags."]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub enum VmaVirtualBlockCreateFlagBits {
Expand All @@ -409,7 +403,7 @@ pub enum VmaVirtualBlockCreateFlagBits {
}
#[doc = " Flags to be passed as VmaVirtualBlockCreateInfo::flags. See #VmaVirtualBlockCreateFlagBits."]
pub type VmaVirtualBlockCreateFlags = Flags;
#[repr(u32)]
#[repr(i32)]
#[doc = " Flags to be passed as VmaVirtualAllocationCreateInfo::flags."]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub enum VmaVirtualAllocationCreateFlagBits {
Expand Down Expand Up @@ -599,13 +593,15 @@ pub struct VmaAllocatorCreateInfo {
#[doc = ""]
#[doc = "Starting from version 3.0.0 this member is no longer optional, it must be set!"]
pub instance: Instance,
#[doc = " \\brief Optional. The highest version of Vulkan that the application is designed to use."]
#[doc = " \\brief Optional. Vulkan version that the application uses."]
#[doc = ""]
#[doc = "It must be a value in the format as created by macro `VK_MAKE_VERSION` or a constant like: `VK_API_VERSION_1_1`, `VK_API_VERSION_1_0`."]
#[doc = "The patch version number specified is ignored. Only the major and minor versions are considered."]
#[doc = "It must be less or equal (preferably equal) to value as passed to `vkCreateInstance` as `VkApplicationInfo::apiVersion`."]
#[doc = "Only versions 1.0, 1.1, 1.2, 1.3 are supported by the current implementation."]
#[doc = "Leaving it initialized to zero is equivalent to `VK_API_VERSION_1_0`."]
#[doc = "It must match the Vulkan version used by the application and supported on the selected physical device,"]
#[doc = "so it must be no higher than `VkApplicationInfo::apiVersion` passed to `vkCreateInstance`"]
#[doc = "and no higher than `VkPhysicalDeviceProperties::apiVersion` found on the physical device used."]
pub vulkanApiVersion: u32,
#[doc = " \\brief Either null or a pointer to an array of external memory handle types for each Vulkan memory type."]
#[doc = ""]
Expand Down Expand Up @@ -818,7 +814,9 @@ pub struct VmaPoolCreateInfo {
#[doc = "can be attached automatically by this library when using other, more convenient of its features."]
pub pMemoryAllocateNext: *mut ::std::os::raw::c_void,
}
#[doc = " Parameters of #VmaAllocation objects, that can be retrieved using function vmaGetAllocationInfo()."]
#[doc = "Parameters of #VmaAllocation objects, that can be retrieved using function vmaGetAllocationInfo()."]
#[doc = ""]
#[doc = "There is also an extended version of this structure that carries additional parameters: #VmaAllocationInfo2."]
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct VmaAllocationInfo {
Expand Down Expand Up @@ -871,6 +869,29 @@ pub struct VmaAllocationInfo {
#[doc = "additional flag #VMA_ALLOCATION_CREATE_USER_DATA_COPY_STRING_BIT set [DEPRECATED]."]
pub pName: *const ::std::os::raw::c_char,
}
#[doc = " Extended parameters of a #VmaAllocation object that can be retrieved using function vmaGetAllocationInfo2()."]
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct VmaAllocationInfo2 {
#[doc = " \\brief Basic parameters of the allocation."]
#[doc = ""]
#[doc = "If you need only these, you can use function vmaGetAllocationInfo() and structure #VmaAllocationInfo instead."]
pub allocationInfo: VmaAllocationInfo,
#[doc = " \\brief Size of the `VkDeviceMemory` block that the allocation belongs to."]
#[doc = ""]
#[doc = "In case of an allocation with dedicated memory, it will be equal to `allocationInfo.size`."]
pub blockSize: DeviceSize,
#[doc = " \\brief `VK_TRUE` if the allocation has dedicated memory, `VK_FALSE` if it was placed as part of a larger memory block."]
#[doc = ""]
#[doc = "When `VK_TRUE`, it also means `VkMemoryDedicatedAllocateInfo` was used when creating the allocation"]
#[doc = "(if VK_KHR_dedicated_allocation extension or Vulkan version >= 1.1 is enabled)."]
pub dedicatedMemory: Bool32,
}
#[doc = " Callback function called during vmaBeginDefragmentation() to check custom criterion about ending current defragmentation pass."]
#[doc = ""]
#[doc = "Should return true if the defragmentation needs to stop current pass."]
pub type PFN_vmaCheckDefragmentationBreakFunction =
::std::option::Option<unsafe extern "C" fn(pUserData: *mut ::std::os::raw::c_void) -> Bool32>;
#[doc = " \\brief Parameters for defragmentation."]
#[doc = ""]
#[doc = "To be used with function vmaBeginDefragmentation()."]
Expand All @@ -890,6 +911,12 @@ pub struct VmaDefragmentationInfo {
#[doc = ""]
#[doc = "`0` means no limit."]
pub maxAllocationsPerPass: u32,
#[doc = " \\brief Optional custom callback for stopping vmaBeginDefragmentation()."]
#[doc = ""]
#[doc = "Have to return true for breaking current defragmentation pass."]
pub pfnBreakCallback: PFN_vmaCheckDefragmentationBreakFunction,
#[doc = " \\brief Optional data to pass to custom callback for stopping pass of defragmentation."]
pub pBreakCallbackUserData: *mut ::std::os::raw::c_void,
}
#[doc = " Single move of an allocation to be done for defragmentation."]
#[repr(C)]
Expand Down Expand Up @@ -1324,12 +1351,28 @@ extern "C" {
#[doc = "You can retrieve same VmaAllocationInfo structure while creating your resource, from function"]
#[doc = "vmaCreateBuffer(), vmaCreateImage(). You can remember it if you are sure parameters don't change"]
#[doc = "(e.g. due to defragmentation)."]
#[doc = ""]
#[doc = "There is also a new function vmaGetAllocationInfo2() that offers extended information"]
#[doc = "about the allocation, returned using new structure #VmaAllocationInfo2."]
pub fn vmaGetAllocationInfo(
allocator: VmaAllocator,
allocation: VmaAllocation,
pAllocationInfo: *mut VmaAllocationInfo,
);
}
extern "C" {
#[doc = " \\brief Returns extended information about specified allocation."]
#[doc = ""]
#[doc = "Current parameters of given allocation are returned in `pAllocationInfo`."]
#[doc = "Extended parameters in structure #VmaAllocationInfo2 include memory block size"]
#[doc = "and a flag telling whether the allocation has dedicated memory."]
#[doc = "It can be useful e.g. for interop with OpenGL."]
pub fn vmaGetAllocationInfo2(
allocator: VmaAllocator,
allocation: VmaAllocation,
pAllocationInfo: *mut VmaAllocationInfo2,
);
}
extern "C" {
#[doc = " \\brief Sets pUserData in given allocation to new value."]
#[doc = ""]
Expand Down Expand Up @@ -1520,6 +1563,63 @@ extern "C" {
sizes: *const DeviceSize,
) -> Result;
}
extern "C" {
#[doc = " \\brief Maps the allocation temporarily if needed, copies data from specified host pointer to it, and flushes the memory from the host caches if needed."]
#[doc = ""]
#[doc = "\\param allocator"]
#[doc = "\\param pSrcHostPointer Pointer to the host data that become source of the copy."]
#[doc = "\\param dstAllocation Handle to the allocation that becomes destination of the copy."]
#[doc = "\\param dstAllocationLocalOffset Offset within `dstAllocation` where to write copied data, in bytes."]
#[doc = "\\param size Number of bytes to copy."]
#[doc = ""]
#[doc = "This is a convenience function that allows to copy data from a host pointer to an allocation easily."]
#[doc = "Same behavior can be achieved by calling vmaMapMemory(), `memcpy()`, vmaUnmapMemory(), vmaFlushAllocation()."]
#[doc = ""]
#[doc = "This function can be called only for allocations created in a memory type that has `VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT` flag."]
#[doc = "It can be ensured e.g. by using #VMA_MEMORY_USAGE_AUTO and #VMA_ALLOCATION_CREATE_HOST_ACCESS_SEQUENTIAL_WRITE_BIT or"]
#[doc = "#VMA_ALLOCATION_CREATE_HOST_ACCESS_RANDOM_BIT."]
#[doc = "Otherwise, the function will fail and generate a Validation Layers error."]
#[doc = ""]
#[doc = "`dstAllocationLocalOffset` is relative to the contents of given `dstAllocation`."]
#[doc = "If you mean whole allocation, you should pass 0."]
#[doc = "Do not pass allocation's offset within device memory block this parameter!"]
pub fn vmaCopyMemoryToAllocation(
allocator: VmaAllocator,
pSrcHostPointer: *const ::std::os::raw::c_void,
dstAllocation: VmaAllocation,
dstAllocationLocalOffset: DeviceSize,
size: DeviceSize,
) -> Result;
}
extern "C" {
#[doc = " \\brief Invalidates memory in the host caches if needed, maps the allocation temporarily if needed, and copies data from it to a specified host pointer."]
#[doc = ""]
#[doc = "\\param allocator"]
#[doc = "\\param srcAllocation Handle to the allocation that becomes source of the copy."]
#[doc = "\\param srcAllocationLocalOffset Offset within `srcAllocation` where to read copied data, in bytes."]
#[doc = "\\param pDstHostPointer Pointer to the host memory that become destination of the copy."]
#[doc = "\\param size Number of bytes to copy."]
#[doc = ""]
#[doc = "This is a convenience function that allows to copy data from an allocation to a host pointer easily."]
#[doc = "Same behavior can be achieved by calling vmaInvalidateAllocation(), vmaMapMemory(), `memcpy()`, vmaUnmapMemory()."]
#[doc = ""]
#[doc = "This function should be called only for allocations created in a memory type that has `VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT`"]
#[doc = "and `VK_MEMORY_PROPERTY_HOST_CACHED_BIT` flag."]
#[doc = "It can be ensured e.g. by using #VMA_MEMORY_USAGE_AUTO and #VMA_ALLOCATION_CREATE_HOST_ACCESS_RANDOM_BIT."]
#[doc = "Otherwise, the function may fail and generate a Validation Layers error."]
#[doc = "It may also work very slowly when reading from an uncached memory."]
#[doc = ""]
#[doc = "`srcAllocationLocalOffset` is relative to the contents of given `srcAllocation`."]
#[doc = "If you mean whole allocation, you should pass 0."]
#[doc = "Do not pass allocation's offset within device memory block as this parameter!"]
pub fn vmaCopyAllocationToMemory(
allocator: VmaAllocator,
srcAllocation: VmaAllocation,
srcAllocationLocalOffset: DeviceSize,
pDstHostPointer: *mut ::std::os::raw::c_void,
size: DeviceSize,
) -> Result;
}
extern "C" {
#[doc = " \\brief Checks magic number in margins around all allocations in given memory types (in both default and custom pools) in search for corruptions."]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion vendor/Vulkan-Headers
Submodule Vulkan-Headers updated 81 files
+8 −0 .gitattributes
+0 −2 .github/ISSUE_TEMPLATE/bug_report.md
+12 −0 .github/dependabot.yml
+0 −2 .github/pull_request_template.md
+41 −0 .github/workflows/ci.yml
+0 −58 .github/workflows/linux.yml
+8 −0 .gitignore
+15 −0 .reuse/dep5
+15 −14 BUILD.gn
+6 −2 BUILD.md
+18 −43 CMakeLists.txt
+10 −0 CODE_OF_CONDUCT.adoc
+0 −1 CODE_OF_CONDUCT.md
+7 −2 CONTRIBUTING.md
+0 −99 INTEGRATION.md
+18 −0 LICENSE.md
+0 −0 LICENSES/Apache-2.0.txt
+9 −0 LICENSES/MIT.txt
+29 −6 README.md
+11 −0 SECURITY.md
+0 −5 cmake/VulkanHeadersConfig.cmake.in
+4 −2 include/vk_video/vulkan_video_codec_h264std.h
+4 −2 include/vk_video/vulkan_video_codec_h264std_decode.h
+46 −31 include/vk_video/vulkan_video_codec_h264std_encode.h
+9 −6 include/vk_video/vulkan_video_codec_h265std.h
+4 −2 include/vk_video/vulkan_video_codec_h265std_decode.h
+66 −55 include/vk_video/vulkan_video_codec_h265std_encode.h
+6 −1 include/vk_video/vulkan_video_codecs_common.h
+5 −19 include/vulkan/vk_icd.h
+4 −18 include/vulkan/vk_layer.h
+1 −1 include/vulkan/vk_platform.h
+4,802 −0 include/vulkan/vulkan.cppm
+9 −1 include/vulkan/vulkan.h
+5,958 −1,541 include/vulkan/vulkan.hpp
+29 −1 include/vulkan/vulkan_android.h
+149 −486 include/vulkan/vulkan_beta.h
+2,932 −327 include/vulkan/vulkan_core.h
+2 −1 include/vulkan/vulkan_directfb.h
+2,058 −1,225 include/vulkan/vulkan_enums.hpp
+2,969 −0 include/vulkan/vulkan_extension_inspection.hpp
+65 −10 include/vulkan/vulkan_format_traits.hpp
+5 −1 include/vulkan/vulkan_fuchsia.h
+10,442 −5,585 include/vulkan/vulkan_funcs.hpp
+3 −1 include/vulkan/vulkan_ggp.h
+6,135 −4,439 include/vulkan/vulkan_handles.hpp
+2,499 −437 include/vulkan/vulkan_hash.hpp
+297 −0 include/vulkan/vulkan_hpp_macros.hpp
+2 −1 include/vulkan/vulkan_ios.h
+2 −1 include/vulkan/vulkan_macos.h
+3 −1 include/vulkan/vulkan_metal.h
+8,627 −5,025 include/vulkan/vulkan_raii.hpp
+55 −1 include/vulkan/vulkan_screen.h
+1,087 −0 include/vulkan/vulkan_shared.hpp
+1,307 −268 include/vulkan/vulkan_static_assertions.hpp
+38,896 −23,057 include/vulkan/vulkan_structs.hpp
+1,203 −504 include/vulkan/vulkan_to_string.hpp
+2 −1 include/vulkan/vulkan_vi.h
+2,702 −0 include/vulkan/vulkan_video.hpp
+2 −1 include/vulkan/vulkan_wayland.h
+10 −1 include/vulkan/vulkan_win32.h
+2 −1 include/vulkan/vulkan_xcb.h
+2 −1 include/vulkan/vulkan_xlib.h
+2 −1 include/vulkan/vulkan_xlib_xrandr.h
+12 −2 registry/apiconventions.py
+5 −1 registry/cgenerator.py
+42 −4 registry/generator.py
+0 −809 registry/genvk.py
+403 −0 registry/parse_dependency.py
+149 −140 registry/profiles/VP_KHR_roadmap.json
+243 −36 registry/reg.py
+94 −3 registry/spec_tools/conventions.py
+1 −2 registry/spec_tools/util.py
+72,398 −41,034 registry/validusage.json
+111 −74 registry/video.xml
+4,711 −1,195 registry/vk.xml
+36 −3 registry/vkconventions.py
+26 −33 tests/CMakeLists.txt
+0 −23 tests/find_package/CMakeLists.txt
+73 −0 tests/integration/CMakeLists.txt
+10 −2 tests/vk_icd.c
+10 −2 tests/vk_layer.c
2 changes: 1 addition & 1 deletion vendor/VulkanMemoryAllocator

1 comment on commit 6dfc8e2

@cheako
Copy link
Contributor

@cheako cheako commented on 6dfc8e2 Feb 1, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good job. fwiw looks like there are only 2 clippy warnings.

Please sign in to comment.