render/vulkan: rename plain to two_pass

We will introduce a new subpass without any post-processing step.
Rename "plain" so that there's no confusion.
This commit is contained in:
Simon Ser 2025-06-21 16:57:51 +02:00
parent dd7f543189
commit 54374b6fe6
3 changed files with 48 additions and 48 deletions

View file

@ -241,10 +241,10 @@ struct wlr_vk_render_buffer {
VkDescriptorSet blend_descriptor_set;
struct wlr_vk_descriptor_pool *blend_attachment_pool;
bool blend_transitioned;
} plain;
} two_pass;
};
bool vulkan_setup_plain_framebuffer(struct wlr_vk_render_buffer *buffer,
bool vulkan_setup_two_pass_framebuffer(struct wlr_vk_render_buffer *buffer,
const struct wlr_dmabuf_attributes *dmabuf);
struct wlr_vk_command_buffer {