Unverified Commit f42d5525 by Omar Zohdi Committed by GitHub

Merge pull request #49 from c0d1f1ed/master

Disable sampleShadingEnable for VulkanHelloAPI
parents 84a8b5b6 eed084f7
...@@ -1407,7 +1407,7 @@ void VulkanHelloAPI::initPipeline() ...@@ -1407,7 +1407,7 @@ void VulkanHelloAPI::initPipeline()
multisamplingInfo.flags = 0; multisamplingInfo.flags = 0;
multisamplingInfo.pSampleMask = nullptr; multisamplingInfo.pSampleMask = nullptr;
multisamplingInfo.rasterizationSamples = VK_SAMPLE_COUNT_1_BIT; multisamplingInfo.rasterizationSamples = VK_SAMPLE_COUNT_1_BIT;
multisamplingInfo.sampleShadingEnable = VK_TRUE; multisamplingInfo.sampleShadingEnable = VK_FALSE;
multisamplingInfo.alphaToCoverageEnable = VK_FALSE; multisamplingInfo.alphaToCoverageEnable = VK_FALSE;
multisamplingInfo.alphaToOneEnable = VK_FALSE; multisamplingInfo.alphaToOneEnable = VK_FALSE;
multisamplingInfo.minSampleShading = 0.0f; multisamplingInfo.minSampleShading = 0.0f;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment