|
|
|
@ -748,8 +748,8 @@ void GraphicsPipeline::MakePipeline(VkRenderPass render_pass) {
|
|
|
|
|
.sType = VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO,
|
|
|
|
|
.pNext = nullptr,
|
|
|
|
|
.flags = 0,
|
|
|
|
|
.logicOpEnable = VK_FALSE,
|
|
|
|
|
.logicOp = VK_LOGIC_OP_COPY,
|
|
|
|
|
.logicOpEnable = key.state.logic_op_enable != 0,
|
|
|
|
|
.logicOp = static_cast<VkLogicOp>(key.state.logic_op.Value()),
|
|
|
|
|
.attachmentCount = static_cast<u32>(cb_attachments.size()),
|
|
|
|
|
.pAttachments = cb_attachments.data(),
|
|
|
|
|
.blendConstants = {},
|
|
|
|
|