X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbackends%2Fvulkan%2Fframebuffer_backend.h;h=3fa75421cb03b2f61a1ca61e54561999c5441000;hb=69965e5d8e01533dae11bb38c1641adfd2814ae5;hp=9a616875e8f888f8515fdec02202e97e738fcffa;hpb=a16145549dc87c3b12671f797bd77b14bcc7786b;p=libs%2Fgl.git diff --git a/source/backends/vulkan/framebuffer_backend.h b/source/backends/vulkan/framebuffer_backend.h index 9a616875..3fa75421 100644 --- a/source/backends/vulkan/framebuffer_backend.h +++ b/source/backends/vulkan/framebuffer_backend.h @@ -13,12 +13,14 @@ class Texture; class VulkanFramebuffer: public NonCopyable { + friend class RenderPass; friend class VulkanCommands; friend class VulkanPipelineState; protected: Device &device; mutable VkFramebuffer handle = 0; + mutable std::vector view_handles; std::string debug_name; VulkanFramebuffer(bool); @@ -31,7 +33,7 @@ protected: void update(unsigned) const; void require_complete() const { } - void synchronize(bool = false) const; + void prepare_image_layouts(bool = false) const; void set_debug_name(const std::string &); void set_vulkan_object_name() const;