Home | History | Annotate | Download | only in smoke

Lines Matching full:blend_attachment

323     VkPipelineColorBlendAttachmentState blend_attachment = {};
324 blend_attachment.blendEnable = true;
325 blend_attachment.srcColorBlendFactor = VK_BLEND_FACTOR_SRC_ALPHA;
326 blend_attachment.dstColorBlendFactor = VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA;
327 blend_attachment.colorBlendOp = VK_BLEND_OP_ADD;
328 blend_attachment.srcAlphaBlendFactor = VK_BLEND_FACTOR_ONE;
329 blend_attachment.dstAlphaBlendFactor = VK_BLEND_FACTOR_ZERO;
330 blend_attachment.alphaBlendOp = VK_BLEND_OP_ADD;
331 blend_attachment.colorWriteMask = VK_COLOR_COMPONENT_R_BIT |
340 blend_info.pAttachments = &blend_attachment;