From: Chris Forbes Date: Wed, 15 May 2019 17:38:01 +0000 (-0700) Subject: Don't set sampleShadingEnable in dEQP-VK.pipeline.framebuffer_attachment.* X-Git-Tag: upstream/1.3.5~2002^2~18^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d66425e5fc05a7170f2fab6ea4de0f50c4144b1f;p=platform%2Fupstream%2FVK-GL-CTS.git Don't set sampleShadingEnable in dEQP-VK.pipeline.framebuffer_attachment.* These tests don't need per-sample shading, and didn't check for whether it was supported by the device. Components: Vulkan Affects: dEQP-VK.pipeline.framebuffer_attachment.*ms VK-GL-CTS Issue: 1776 Change-Id: Ic8477262410e1531c1acabe494c2cf64c199dd6b --- diff --git a/external/vulkancts/modules/vulkan/pipeline/vktPipelineFramebufferAttachmentTests.cpp b/external/vulkancts/modules/vulkan/pipeline/vktPipelineFramebufferAttachmentTests.cpp index 95cbd49..2e41043 100644 --- a/external/vulkancts/modules/vulkan/pipeline/vktPipelineFramebufferAttachmentTests.cpp +++ b/external/vulkancts/modules/vulkan/pipeline/vktPipelineFramebufferAttachmentTests.cpp @@ -209,7 +209,7 @@ Move makeGraphicsPipeline (const DeviceInterface& vk, DE_NULL, // const void* pNext; (VkPipelineMultisampleStateCreateFlags)0, // VkPipelineMultisampleStateCreateFlags flags; !multisample ? VK_SAMPLE_COUNT_1_BIT : VK_SAMPLE_COUNT_4_BIT, // VkSampleCountFlagBits rasterizationSamples; - !multisample ? VK_FALSE : VK_TRUE, // VkBool32 sampleShadingEnable; + VK_FALSE, // VkBool32 sampleShadingEnable; 1.0f, // float minSampleShading; DE_NULL, // const VkSampleMask* pSampleMask; VK_FALSE, // VkBool32 alphaToCoverageEnable;