Skip to content

Commit

Permalink
Blending Working
Browse files Browse the repository at this point in the history
  • Loading branch information
tomheeleynz committed Sep 7, 2021
1 parent a54838e commit 9ca859c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Arcane/src/Arcane/Platform/Vulkan/VulkanPipeline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ namespace Arcane {
// Color Blend Attachment
VkPipelineColorBlendAttachmentState colorBlendAttachment{};
colorBlendAttachment.colorWriteMask = VK_COLOR_COMPONENT_R_BIT | VK_COLOR_COMPONENT_G_BIT | VK_COLOR_COMPONENT_B_BIT | VK_COLOR_COMPONENT_A_BIT;
colorBlendAttachment.blendEnable = VK_FALSE;
colorBlendAttachment.blendEnable = VK_TRUE;
colorBlendAttachment.srcColorBlendFactor = VK_BLEND_FACTOR_SRC_ALPHA;
colorBlendAttachment.dstColorBlendFactor = VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA;
colorBlendAttachment.colorBlendOp = VK_BLEND_OP_ADD;
Expand Down

0 comments on commit 9ca859c

Please sign in to comment.