File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff 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};
You can’t perform that action at this time.
0 commit comments