Remove logic defeating blend assignment

This commit is contained in:
Jack Andersen 2017-09-04 21:55:17 -10:00 committed by GitHub
parent dd6e53119a
commit 5bc17c753c
1 changed files with 0 additions and 1 deletions

View File

@ -2000,7 +2000,6 @@ class VulkanShaderPipeline : public IShaderPipeline
colorAttachment.dstColorBlendFactor = BLEND_FACTOR_TABLE[int(dstFac)];
colorAttachment.colorBlendOp = VK_BLEND_OP_ADD;
}
colorAttachment.colorBlendOp = VK_BLEND_OP_ADD;
colorAttachment.srcAlphaBlendFactor = VK_BLEND_FACTOR_ONE;
colorAttachment.dstAlphaBlendFactor = VK_BLEND_FACTOR_ZERO;
colorAttachment.alphaBlendOp = VK_BLEND_OP_ADD;