]> git.tdb.fi Git - libs/gl.git/blobdiff - source/backends/vulkan/texture_backend.h
Implement mipmap generation for the Vulkan backend
[libs/gl.git] / source / backends / vulkan / texture_backend.h
index 1744cdd8c93a60ea589390fd98e0bacd2e38f323..9d0435000f45578c8815bd428869e98b9cc056d8 100644 (file)
@@ -18,6 +18,7 @@ protected:
        Device &device;
        VkImage handle = 0;
        VkImageView view_handle = 0;
+       unsigned memory_id = 0;
        unsigned view_type;
        std::string debug_name;
 
@@ -26,9 +27,14 @@ protected:
        ~VulkanTexture();
 
        void allocate();
+       virtual void fill_image_info(void *) const = 0;
        void require_swizzle() { }
 
-       void generate_mipmap();
+       virtual void generate_mipmap() = 0;
+       void generate_mipmap_levels(unsigned);
+       virtual void fill_mipmap_blit(unsigned, void *) = 0;
+
+       void change_layout(unsigned, int, unsigned, bool) const;
 
        void set_debug_name(const std::string &);
        void set_vulkan_object_names() const;