From 2aa2c1811f902fdb97e70f2e0d47226775918ec1 Mon Sep 17 00:00:00 2001 From: raven02 Date: Tue, 23 Aug 2016 19:07:51 +0800 Subject: [PATCH] Vulkan : add structure type for color blend state (#2091) --- rpcs3/Emu/RSX/VK/VKGSRender.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/VK/VKGSRender.cpp b/rpcs3/Emu/RSX/VK/VKGSRender.cpp index c08ebcf182..e8218a704a 100644 --- a/rpcs3/Emu/RSX/VK/VKGSRender.cpp +++ b/rpcs3/Emu/RSX/VK/VKGSRender.cpp @@ -925,7 +925,8 @@ bool VKGSRender::load_program() properties.att_state[render_targets[idx]].blendEnable = VK_FALSE; } } - + + properties.cs.sType = VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO; properties.cs.attachmentCount = m_draw_buffers_count; properties.cs.pAttachments = properties.att_state;