render/vulkan: fix single-pass linear path

Fixes d1c88e9 "render/vulkan: add linear single-subpass"

`find_or_create_render_setup` still assumed a single-buffer setup
always implied use of an srgb format
This commit is contained in:
Félix Poisot 2025-11-22 15:45:00 +00:00
parent 106f0f9506
commit b98904705d
2 changed files with 13 additions and 7 deletions

View file

@ -203,6 +203,7 @@ struct wlr_vk_render_format_setup {
struct wl_list link; // wlr_vk_renderer.render_format_setups
const struct wlr_vk_format *render_format; // used in renderpass
bool use_blending_buffer;
bool use_srgb;
VkRenderPass render_pass;
VkPipeline output_pipe_identity;