diff --git a/src/vulkan/buffer.cpp b/src/vulkan/buffer.cpp index 150a614..869ea47 100644 --- a/src/vulkan/buffer.cpp +++ b/src/vulkan/buffer.cpp @@ -18,8 +18,6 @@ Buffer::Buffer(VkDeviceSize size, VkBufferUsageFlags bufferUsage, VmaMemoryUsage allocationCreateInfo.flags = flags; vmaCreateBuffer(Instance::GetAllocator(), &bufferCreateInfo, &allocationCreateInfo, &handle, &allocation, &allocationInfo); - - vmaSetAllocationName(Instance::GetAllocator(), allocation, "My Custom name"); } Buffer::Buffer(VkDeviceSize size, void *data, VkDeviceSize dataSize, VkBufferUsageFlags bufferUsage,