We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d223da commit e583b2dCopy full SHA for e583b2d
taichi/backends/vulkan/vulkan_device.cpp
@@ -2007,6 +2007,10 @@ void VulkanDevice::create_vma_allocator() {
2007
vk_vma_functions.vkGetPhysicalDeviceMemoryProperties2KHR =
2008
PFN_vkGetPhysicalDeviceMemoryProperties2KHR(vkGetInstanceProcAddr(
2009
volkGetLoadedInstance(), "vkGetPhysicalDeviceMemoryProperties2KHR"));
2010
+ vk_vma_functions.vkGetDeviceBufferMemoryRequirements =
2011
+ table.vkGetDeviceBufferMemoryRequirements;
2012
+ vk_vma_functions.vkGetDeviceImageMemoryRequirements =
2013
+ table.vkGetDeviceImageMemoryRequirements;
2014
2015
allocatorInfo.pVulkanFunctions = &vk_vma_functions;
2016
0 commit comments