render/vulkan: replace wlr_vk_render_pass.srgb_pathway with two_pass

The important bit here is whether this is using a single or two
sub-passes. The flag isn't used for anything else.

Preparation for an upcoming one-subpass codepath.
This commit is contained in:
Simon Ser 2025-06-21 18:14:45 +02:00
parent b2d09cdee9
commit 3e88a79e6f
2 changed files with 5 additions and 5 deletions

View file

@ -405,7 +405,7 @@ struct wlr_vk_render_pass {
VkPipeline bound_pipeline;
float projection[9];
bool failed;
bool srgb_pathway; // if false, rendering via intermediate blending buffer
bool two_pass; // rendering via intermediate blending buffer
struct wlr_color_transform *color_transform;
bool has_primaries;