mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-22 20:59:02 +02:00
[vulkan] Implemented active color output tracking in runtime info and update fragment color handling
This commit is contained in:
parent
4481391474
commit
3db45f3c46
4 changed files with 21 additions and 2 deletions
|
|
@ -111,6 +111,9 @@ struct RuntimeInfo {
|
|||
/// Output types for each color attachment
|
||||
std::array<AttributeType, 8> color_output_types{};
|
||||
|
||||
/// Fragment color outputs that are active for the current pipeline.
|
||||
std::array<bool, 8> active_color_outputs{true, true, true, true, true, true, true, true};
|
||||
|
||||
/// Dual source blending
|
||||
bool dual_source_blend{};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue