mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-10 05:28:56 +02:00
fix build
This commit is contained in:
parent
cd7414814a
commit
e05c74108f
1 changed files with 2 additions and 1 deletions
|
|
@ -893,7 +893,8 @@ void GraphicsPipeline::MakePipeline(VkRenderPass render_pass) {
|
|||
VK_COLOR_COMPONENT_A_BIT,
|
||||
};
|
||||
const auto& blend{key.state.attachments[index]};
|
||||
const bool supports_blending = !VideoCore::Surface::IsPixelFormatInteger(key.color_formats[index]);
|
||||
const bool supports_blending =
|
||||
!VideoCore::Surface::IsPixelFormatInteger(DecodeFormat(key.state.color_formats[index]));
|
||||
const std::array mask{blend.Mask()};
|
||||
VkColorComponentFlags write_mask{};
|
||||
for (size_t i = 0; i < mask_table.size(); ++i) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue