Skip to content

Commit a4a2a50

Browse files
committed
Remove duplicate declaration
1 parent 75796f4 commit a4a2a50

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

attachments/38_ray_tracing.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -624,17 +624,14 @@ class VulkanRaytracingApplication
624624
.depthCompareOp = vk::CompareOp::eLess,
625625
.depthBoundsTestEnable = vk::False,
626626
.stencilTestEnable = vk::False};
627-
vk::PipelineColorBlendAttachmentState colorBlendAttachment;
628627
vk::PipelineColorBlendAttachmentState colorBlendAttachment{
629628
.blendEnable = vk::False,
630629
.colorWriteMask = vk::ColorComponentFlagBits::eR | vk::ColorComponentFlagBits::eG | vk::ColorComponentFlagBits::eB | vk::ColorComponentFlagBits::eA};
631-
632630
vk::PipelineColorBlendStateCreateInfo colorBlending{
633631
.logicOpEnable = vk::False,
634632
.logicOp = vk::LogicOp::eCopy,
635633
.attachmentCount = 1,
636634
.pAttachments = &colorBlendAttachment};
637-
638635
std::vector dynamicStates = {
639636
vk::DynamicState::eViewport,
640637
vk::DynamicState::eScissor};

0 commit comments

Comments
 (0)