Searched refs:blend_attachment (Results 1 – 1 of 1) sorted by relevance
323 VkPipelineColorBlendAttachmentState blend_attachment = {}; in create_pipeline() local324 blend_attachment.blendEnable = true; in create_pipeline()325 blend_attachment.srcColorBlendFactor = VK_BLEND_FACTOR_SRC_ALPHA; in create_pipeline()326 blend_attachment.dstColorBlendFactor = VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA; in create_pipeline()327 blend_attachment.colorBlendOp = VK_BLEND_OP_ADD; in create_pipeline()328 blend_attachment.srcAlphaBlendFactor = VK_BLEND_FACTOR_ONE; in create_pipeline()329 blend_attachment.dstAlphaBlendFactor = VK_BLEND_FACTOR_ZERO; in create_pipeline()330 blend_attachment.alphaBlendOp = VK_BLEND_OP_ADD; in create_pipeline()331 blend_attachment.colorWriteMask = VK_COLOR_COMPONENT_R_BIT | in create_pipeline()340 blend_info.pAttachments = &blend_attachment; in create_pipeline()