]> git.tdb.fi Git - libs/gl.git/blobdiff - source/backends/vulkan/memoryallocator.h
Refactor Vulkan memory mapping functions
[libs/gl.git] / source / backends / vulkan / memoryallocator.h
index 4715bea8311a2f88db74919f24af71005b72a18c..230f21a202126d176034f576981426eddab9f281 100644 (file)
@@ -40,16 +40,14 @@ public:
 private:
        unsigned find_memory_type_index(unsigned, MemoryType);
        unsigned allocate(std::size_t, unsigned, MemoryType);
-       Allocation &get_allocation(unsigned);
-       const Allocation &get_allocation(unsigned) const;
 
 public:
        unsigned allocate(VkBuffer, MemoryType);
        unsigned allocate(VkImage, MemoryType);
        void release(unsigned);
 
-       void *map(unsigned, std::size_t, std::size_t);
-       void unmap(void *);
+       void *map(unsigned);
+       void unmap(unsigned);
 };
 
 } // namespace GL