From d66425e5fc05a7170f2fab6ea4de0f50c4144b1f Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Wed, 15 May 2019 10:38:01 -0700 Subject: [PATCH] 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 --- .../modules/vulkan/pipeline/vktPipelineFramebufferAttachmentTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.7.4