From: Ari Suonpaa Date: Sat, 28 Oct 2017 15:05:48 +0000 (+0300) Subject: Added test for differing interpolation decorations. X-Git-Tag: upstream/1.3.5~2565^2~83 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=41dab8a67688897c403f39573891a8ae44fbc189;p=platform%2Fupstream%2FVK-GL-CTS.git Added test for differing interpolation decorations. Added test where varying between vertex and fragment shader have different interpolation decorations. Both Flat and NoPerspective are tested. Affects: dEQP-VK.draw.differing_interpolation.* Components: Vulkan VK-GL-CTS issue: 618 Change-Id: I7ba5badd5f0ebe0ab6d4f3a374bc863b72c24248 --- diff --git a/AndroidGen.mk b/AndroidGen.mk index 10ec8ac..9f1e86b 100644 --- a/AndroidGen.mk +++ b/AndroidGen.mk @@ -87,6 +87,7 @@ LOCAL_SRC_FILES := \ external/vulkancts/modules/vulkan/draw/vktDrawBaseClass.cpp \ external/vulkancts/modules/vulkan/draw/vktDrawBufferObjectUtil.cpp \ external/vulkancts/modules/vulkan/draw/vktDrawCreateInfoUtil.cpp \ + external/vulkancts/modules/vulkan/draw/vktDrawDifferingInterpolationTests.cpp \ external/vulkancts/modules/vulkan/draw/vktDrawImageObjectUtil.cpp \ external/vulkancts/modules/vulkan/draw/vktDrawIndexedTest.cpp \ external/vulkancts/modules/vulkan/draw/vktDrawIndirectTest.cpp \ diff --git a/android/cts/master/vk-master.txt b/android/cts/master/vk-master.txt index aa99679..8531677 100755 --- a/android/cts/master/vk-master.txt +++ b/android/cts/master/vk-master.txt @@ -209713,6 +209713,10 @@ dEQP-VK.draw.inverted_depth_ranges.depthclamp_deltalarge dEQP-VK.draw.inverted_depth_ranges.nodepthclamp_deltasmall dEQP-VK.draw.inverted_depth_ranges.nodepthclamp_deltaone dEQP-VK.draw.inverted_depth_ranges.nodepthclamp_deltalarge +dEQP-VK.draw.differing_interpolation.flat_0 +dEQP-VK.draw.differing_interpolation.flat_1 +dEQP-VK.draw.differing_interpolation.noperspective_0 +dEQP-VK.draw.differing_interpolation.noperspective_1 dEQP-VK.compute.basic.empty_shader dEQP-VK.compute.basic.ubo_to_ssbo_single_invocation dEQP-VK.compute.basic.ubo_to_ssbo_single_group diff --git a/external/vulkancts/modules/vulkan/draw/CMakeLists.txt b/external/vulkancts/modules/vulkan/draw/CMakeLists.txt index eb89c3b..bbae349 100644 --- a/external/vulkancts/modules/vulkan/draw/CMakeLists.txt +++ b/external/vulkancts/modules/vulkan/draw/CMakeLists.txt @@ -28,6 +28,8 @@ set(DEQP_VK_DRAW_SRCS vktDrawTestCaseUtil.hpp vktBasicDrawTests.hpp vktBasicDrawTests.cpp + vktDrawDifferingInterpolationTests.hpp + vktDrawDifferingInterpolationTests.cpp ) set(DEQP_VK_DRAW_LIBS diff --git a/external/vulkancts/modules/vulkan/draw/vktDrawDifferingInterpolationTests.cpp b/external/vulkancts/modules/vulkan/draw/vktDrawDifferingInterpolationTests.cpp new file mode 100644 index 0000000..cc827af --- /dev/null +++ b/external/vulkancts/modules/vulkan/draw/vktDrawDifferingInterpolationTests.cpp @@ -0,0 +1,384 @@ +/*------------------------------------------------------------------------ + * Vulkan Conformance Tests + * ------------------------ + * + * Copyright (c) 2017 The Khronos Group Inc. + * Copyright (c) 2017 Google Inc. + * Copyright (c) 2017 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + *//*! + * \file + * \brief Differing iterpolation decorations tests + *//*--------------------------------------------------------------------*/ + +#include "vktDrawDifferingInterpolationTests.hpp" + +#include "vktDrawBaseClass.hpp" +#include "vkQueryUtil.hpp" +#include "vktTestGroupUtil.hpp" + +#include "deDefs.h" +#include "deRandom.hpp" +#include "deString.h" + +#include "tcuTestCase.hpp" +#include "tcuRGBA.hpp" +#include "tcuTextureUtil.hpp" +#include "tcuImageCompare.hpp" +#include "tcuStringTemplate.hpp" + +#include "rrRenderer.hpp" + +#include +#include + +namespace vkt +{ +namespace Draw +{ +namespace +{ +using namespace vk; +using namespace std; + +struct DrawParams +{ + string vertShader; + string fragShader; + string refVertShader; + string refFragShader; +}; + +class DrawTestInstance : public TestInstance +{ +public: + DrawTestInstance (Context& context, const DrawParams& data); + ~DrawTestInstance (void); + tcu::TestStatus iterate (void); +private: + DrawParams m_data; + + enum + { + WIDTH = 256, + HEIGHT = 256 + }; +}; + +DrawTestInstance::DrawTestInstance (Context& context, const DrawParams& data) + : vkt::TestInstance (context) + , m_data (data) +{ +} + +DrawTestInstance::~DrawTestInstance (void) +{ +} + +class DrawTestCase : public TestCase +{ + public: + DrawTestCase (tcu::TestContext& context, const char* name, const char* desc, const DrawParams data); + ~DrawTestCase (void); + virtual void initPrograms (SourceCollections& programCollection) const; + virtual TestInstance* createInstance (Context& context) const; + +private: + DrawParams m_data; +}; + +DrawTestCase::DrawTestCase (tcu::TestContext& context, const char* name, const char* desc, const DrawParams data) + : vkt::TestCase (context, name, desc) + , m_data (data) +{ +} + +DrawTestCase::~DrawTestCase (void) +{ +} + +void DrawTestCase::initPrograms (SourceCollections& programCollection) const +{ + const tcu::StringTemplate vertShader (string( + "#version 430\n" + "layout(location = 0) in vec4 in_position;\n" + "layout(location = 1) in vec4 in_color;\n" + "layout(location = 0) ${qualifier:opt} out vec4 out_color;\n" + "out gl_PerVertex {\n" + " vec4 gl_Position;\n" + " float gl_PointSize;\n" + "};\n" + "void main() {\n" + " gl_PointSize = 1.0;\n" + " gl_Position = in_position;\n" + " out_color = in_color;\n" + "}\n")); + + const tcu::StringTemplate fragShader (string( + "#version 430\n" + "layout(location = 0) ${qualifier:opt} in vec4 in_color;\n" + "layout(location = 0) out vec4 out_color;\n" + "void main()\n" + "{\n" + " out_color = in_color;\n" + "}\n")); + + map empty; + map flat; + flat["qualifier"] = "flat"; + map noPerspective; + noPerspective["qualifier"] = "noperspective"; + + programCollection.glslSources.add("vert") << glu::VertexSource(vertShader.specialize(empty)); + programCollection.glslSources.add("vertFlatColor") << glu::VertexSource(vertShader.specialize(flat)); + programCollection.glslSources.add("vertNoPerspective") << glu::VertexSource(vertShader.specialize(noPerspective)); + programCollection.glslSources.add("frag") << glu::FragmentSource(fragShader.specialize(empty)); + programCollection.glslSources.add("fragFlatColor") << glu::FragmentSource(fragShader.specialize(flat)); + programCollection.glslSources.add("fragNoPerspective") << glu::FragmentSource(fragShader.specialize(noPerspective)); +} + +TestInstance* DrawTestCase::createInstance (Context& context) const +{ + return new DrawTestInstance(context, m_data); +} + +tcu::TestStatus DrawTestInstance::iterate (void) +{ + tcu::ConstPixelBufferAccess frames[2]; + de::SharedPtr colorTargetImages[2]; + const string vertShaderNames[2] = { m_data.vertShader, m_data.refVertShader }; + const string fragShaderNames[2] = { m_data.fragShader, m_data.refFragShader }; + tcu::TestLog &log = m_context.getTestContext().getLog(); + + // Run two iterations with shaders that have different interpolation decorations. Images should still match. + for (deUint32 frameIdx = 0; frameIdx < DE_LENGTH_OF_ARRAY(frames); frameIdx++) + { + const DeviceInterface& vk = m_context.getDeviceInterface(); + const VkDevice device = m_context.getDevice(); + const CmdPoolCreateInfo cmdPoolCreateInfo (m_context.getUniversalQueueFamilyIndex()); + Move cmdPool = createCommandPool(vk, device, &cmdPoolCreateInfo); + Move cmdBuffer = allocateCommandBuffer(vk, device, *cmdPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY); + const Unique vs (createShaderModule(vk, device, m_context.getBinaryCollection().get(vertShaderNames[frameIdx].c_str()), 0)); + const Unique fs (createShaderModule(vk, device, m_context.getBinaryCollection().get(fragShaderNames[frameIdx].c_str()), 0)); + de::SharedPtr vertexBuffer; + Move renderPass; + Move colorTargetView; + Move framebuffer; + Move pipeline; + + // Create color buffer image. + { + const VkExtent3D targetImageExtent = { WIDTH, HEIGHT, 1 }; + const ImageCreateInfo targetImageCreateInfo (VK_IMAGE_TYPE_2D, VK_FORMAT_R8G8B8A8_UNORM, targetImageExtent, 1, 1, VK_SAMPLE_COUNT_1_BIT, + VK_IMAGE_TILING_OPTIMAL, VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT | VK_IMAGE_USAGE_TRANSFER_SRC_BIT | VK_IMAGE_USAGE_TRANSFER_DST_BIT); + colorTargetImages[frameIdx] = Image::createAndAlloc(vk, device, targetImageCreateInfo, m_context.getDefaultAllocator()); + } + + // Create render pass and frame buffer. + { + const ImageViewCreateInfo colorTargetViewInfo (colorTargetImages[frameIdx]->object(), VK_IMAGE_VIEW_TYPE_2D, VK_FORMAT_R8G8B8A8_UNORM); + colorTargetView = createImageView(vk, device, &colorTargetViewInfo); + + RenderPassCreateInfo renderPassCreateInfo; + renderPassCreateInfo.addAttachment(AttachmentDescription(VK_FORMAT_R8G8B8A8_UNORM, + VK_SAMPLE_COUNT_1_BIT, + VK_ATTACHMENT_LOAD_OP_LOAD, + VK_ATTACHMENT_STORE_OP_STORE, + VK_ATTACHMENT_LOAD_OP_DONT_CARE, + VK_ATTACHMENT_STORE_OP_STORE, + VK_IMAGE_LAYOUT_GENERAL, + VK_IMAGE_LAYOUT_GENERAL)); + + const VkAttachmentReference colorAttachmentRef = { 0, VK_IMAGE_LAYOUT_GENERAL }; + renderPassCreateInfo.addSubpass(SubpassDescription(VK_PIPELINE_BIND_POINT_GRAPHICS, + 0, + 0, + DE_NULL, + 1, + &colorAttachmentRef, + DE_NULL, + AttachmentReference(), + 0, + DE_NULL)); + + vector colorAttachments (1); + + renderPass = createRenderPass(vk, device, &renderPassCreateInfo); + colorAttachments[0] = *colorTargetView; + + const FramebufferCreateInfo framebufferCreateInfo (*renderPass, colorAttachments, WIDTH, HEIGHT, 1); + + framebuffer = createFramebuffer(vk, device, &framebufferCreateInfo); + } + + // Create vertex buffer. + { + const PositionColorVertex vertices[] = + { + PositionColorVertex( + tcu::Vec4(-0.8f, -0.7f, 1.0f, 1.0f), // Coord + tcu::Vec4(1.0f, 0.0f, 0.0f, 1.0f)), // Color + + PositionColorVertex( + tcu::Vec4(0.0f, 0.4f, 0.5f, 0.5f), // Coord + tcu::Vec4(0.0f, 1.0f, 0.0f, 1.0f)), // Color + + PositionColorVertex( + tcu::Vec4(0.8f, -0.5f, 1.0f, 1.0f), // Coord + tcu::Vec4(0.0f, 0.0f, 1.0f, 1.0f)) // Color + }; + + const VkDeviceSize dataSize = DE_LENGTH_OF_ARRAY(vertices) * sizeof(PositionColorVertex); + vertexBuffer = Buffer::createAndAlloc(vk, device, BufferCreateInfo(dataSize, VK_BUFFER_USAGE_VERTEX_BUFFER_BIT), m_context.getDefaultAllocator(), MemoryRequirement::HostVisible); + deUint8* ptr = reinterpret_cast(vertexBuffer->getBoundMemory().getHostPtr()); + + deMemcpy(ptr, vertices, static_cast(dataSize)); + flushMappedMemoryRange(vk, device, vertexBuffer->getBoundMemory().getMemory(), vertexBuffer->getBoundMemory().getOffset(), VK_WHOLE_SIZE); + } + + // Create pipeline + { + const PipelineLayoutCreateInfo pipelineLayoutCreateInfo; + Move pipelineLayout = createPipelineLayout(vk, device, &pipelineLayoutCreateInfo); + const PipelineCreateInfo::ColorBlendState::Attachment vkCbAttachmentState; + + VkViewport viewport; + viewport.x = 0; + viewport.y = 0; + viewport.width = static_cast(WIDTH); + viewport.height = static_cast(HEIGHT); + viewport.minDepth = 0.0f; + viewport.maxDepth = 1.0f; + + VkRect2D scissor; + scissor.offset.x = 0; + scissor.offset.y = 0; + scissor.extent.width = WIDTH; + scissor.extent.height = HEIGHT; + + const VkVertexInputBindingDescription vertexInputBindingDescription = { 0, (deUint32)sizeof(tcu::Vec4) * 2, VK_VERTEX_INPUT_RATE_VERTEX }; + + const VkVertexInputAttributeDescription vertexInputAttributeDescriptions[2] = + { + { 0u, 0u, VK_FORMAT_R32G32B32A32_SFLOAT, 0u }, + { 1u, 0u, VK_FORMAT_R32G32B32A32_SFLOAT, (deUint32)(sizeof(float)* 4) } + }; + + PipelineCreateInfo::VertexInputState vertexInputState = PipelineCreateInfo::VertexInputState(1, &vertexInputBindingDescription, 2, vertexInputAttributeDescriptions); + + PipelineCreateInfo pipelineCreateInfo(*pipelineLayout, *renderPass, 0, 0); + pipelineCreateInfo.addShader(PipelineCreateInfo::PipelineShaderStage(*vs, "main", VK_SHADER_STAGE_VERTEX_BIT)); + pipelineCreateInfo.addShader(PipelineCreateInfo::PipelineShaderStage(*fs, "main", VK_SHADER_STAGE_FRAGMENT_BIT)); + pipelineCreateInfo.addState(PipelineCreateInfo::VertexInputState(vertexInputState)); + pipelineCreateInfo.addState(PipelineCreateInfo::InputAssemblerState(VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST)); + pipelineCreateInfo.addState(PipelineCreateInfo::ColorBlendState(1, &vkCbAttachmentState)); + pipelineCreateInfo.addState(PipelineCreateInfo::ViewportState(1, vector(1, viewport), vector(1, scissor))); + pipelineCreateInfo.addState(PipelineCreateInfo::DepthStencilState()); + pipelineCreateInfo.addState(PipelineCreateInfo::RasterizerState()); + pipelineCreateInfo.addState(PipelineCreateInfo::MultiSampleState()); + + pipeline = createGraphicsPipeline(vk, device, DE_NULL, &pipelineCreateInfo); + } + + // Queue draw and read results. + { + const VkQueue queue = m_context.getUniversalQueue(); + const VkClearColorValue clearColor = { { 0.0f, 0.0f, 0.0f, 1.0f } }; + const CmdBufferBeginInfo beginInfo; + const ImageSubresourceRange subresourceRange (VK_IMAGE_ASPECT_COLOR_BIT); + const VkMemoryBarrier memBarrier = + { + VK_STRUCTURE_TYPE_MEMORY_BARRIER, + DE_NULL, + VK_ACCESS_TRANSFER_WRITE_BIT, + VK_ACCESS_COLOR_ATTACHMENT_READ_BIT | VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT + }; + const VkRect2D renderArea = { { 0, 0 }, { WIDTH, HEIGHT } }; + const VkDeviceSize vertexBufferOffset = 0; + const VkBuffer buffer = vertexBuffer->object(); + const VkOffset3D zeroOffset = { 0, 0, 0 }; + const RenderPassBeginInfo renderPassBegin (*renderPass, *framebuffer, renderArea); + + vk.beginCommandBuffer(*cmdBuffer, &beginInfo); + + initialTransitionColor2DImage(vk, *cmdBuffer, colorTargetImages[frameIdx]->object(), VK_IMAGE_LAYOUT_GENERAL); + + vk.cmdClearColorImage(*cmdBuffer, colorTargetImages[frameIdx]->object(), + VK_IMAGE_LAYOUT_GENERAL, &clearColor, 1, &subresourceRange); + + vk.cmdPipelineBarrier(*cmdBuffer, VK_PIPELINE_STAGE_TRANSFER_BIT, + VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT, + 0, 1, &memBarrier, 0, DE_NULL, 0, DE_NULL); + + vk.cmdBeginRenderPass(*cmdBuffer, &renderPassBegin, VK_SUBPASS_CONTENTS_INLINE); + vk.cmdBindVertexBuffers(*cmdBuffer, 0, 1, &buffer, &vertexBufferOffset); + vk.cmdBindPipeline(*cmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, *pipeline); + vk.cmdDraw(*cmdBuffer, 3u, 1u, 0u, 0u); + vk.cmdEndRenderPass(*cmdBuffer); + vk.endCommandBuffer(*cmdBuffer); + + VkSubmitInfo submitInfo = + { + VK_STRUCTURE_TYPE_SUBMIT_INFO, // VkStructureType sType; + DE_NULL, // const void* pNext; + 0, // deUint32 waitSemaphoreCount; + DE_NULL, // const VkSemaphore* pWaitSemaphores; + (const VkPipelineStageFlags*)DE_NULL, + 1, // deUint32 commandBufferCount; + &cmdBuffer.get(), // const VkCommandBuffer* pCommandBuffers; + 0, // deUint32 signalSemaphoreCount; + DE_NULL // const VkSemaphore* pSignalSemaphores; + }; + + VK_CHECK(vk.queueSubmit(queue, 1, &submitInfo, DE_NULL)); + VK_CHECK(vk.queueWaitIdle(queue)); + + frames[frameIdx] = colorTargetImages[frameIdx]->readSurface(queue, m_context.getDefaultAllocator(), VK_IMAGE_LAYOUT_GENERAL, zeroOffset, WIDTH, HEIGHT, VK_IMAGE_ASPECT_COLOR_BIT); + } + } + + qpTestResult res = QP_TEST_RESULT_PASS; + + if (!tcu::intThresholdCompare(log, "Result", "Image comparison result", frames[0], frames[1], tcu::UVec4(0), tcu::COMPARE_LOG_RESULT)) + res = QP_TEST_RESULT_FAIL; + + return tcu::TestStatus(res, qpGetTestResultName(res)); +} + +void createTests (tcu::TestCaseGroup* testGroup) +{ + tcu::TestContext& testCtx = testGroup->getTestContext(); + const DrawParams paramsFlat0 = { "vert", "fragFlatColor", "vertFlatColor", "fragFlatColor" }; + const DrawParams paramsFlat1 = { "vertFlatColor", "frag", "vert", "frag" }; + + const DrawParams paramsNoPerspective0 = { "vert", "fragNoPerspective", "vertNoPerspective", "fragNoPerspective" }; + const DrawParams paramsNoPerspective1 = { "vertNoPerspective", "frag", "vert", "frag" }; + + testGroup->addChild(new DrawTestCase(testCtx, "flat_0", "Mismatching flat interpolation testcase 0.", paramsFlat0)); + testGroup->addChild(new DrawTestCase(testCtx, "flat_1", "Mismatching flat interpolation testcase 1.", paramsFlat1)); + + testGroup->addChild(new DrawTestCase(testCtx, "noperspective_0", "Mismatching noperspective interpolation testcase 0.", paramsNoPerspective0)); + testGroup->addChild(new DrawTestCase(testCtx, "noperspective_1", "Mismatching noperspective interpolation testcase 1.", paramsNoPerspective1)); +} + +} // anonymous + +tcu::TestCaseGroup* createDifferingInterpolationTests (tcu::TestContext& testCtx) +{ + return createTestGroup(testCtx, "differing_interpolation", "Tests for mismatched interpolation decorations.", createTests); +} + +} // Draw +} // vkt diff --git a/external/vulkancts/modules/vulkan/draw/vktDrawDifferingInterpolationTests.hpp b/external/vulkancts/modules/vulkan/draw/vktDrawDifferingInterpolationTests.hpp new file mode 100644 index 0000000..3e0521d --- /dev/null +++ b/external/vulkancts/modules/vulkan/draw/vktDrawDifferingInterpolationTests.hpp @@ -0,0 +1,41 @@ +#ifndef _VKTDRAWDIFFERINGINTERPOLATIONTESTS_HPP +#define _VKTDRAWDIFFERINGINTERPOLATIONTESTS_HPP +/*------------------------------------------------------------------------ + * Vulkan Conformance Tests + * ------------------------ + * + * Copyright (c) 2017 The Khronos Group Inc. + * Copyright (c) 2017 Google Inc. + * Copyright (c) 2017 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + *//*! + * \file + * \brief Differing iterpolation decorations tests + *//*--------------------------------------------------------------------*/ + +#include "vkDefs.hpp" +#include "vktTestCase.hpp" + +namespace vkt +{ +namespace Draw +{ + +tcu::TestCaseGroup* createDifferingInterpolationTests (tcu::TestContext& testCtx); + +} // Draw +} // vkt + +#endif // _VKTDRAWDIFFERINGINTERPOLATIONTESTS_HPP diff --git a/external/vulkancts/modules/vulkan/draw/vktDrawTests.cpp b/external/vulkancts/modules/vulkan/draw/vktDrawTests.cpp index 7afb290..7440d1e 100644 --- a/external/vulkancts/modules/vulkan/draw/vktDrawTests.cpp +++ b/external/vulkancts/modules/vulkan/draw/vktDrawTests.cpp @@ -33,6 +33,7 @@ #include "vktDrawShaderDrawParametersTests.hpp" #include "vktDrawNegativeViewportHeightTests.hpp" #include "vktDrawInvertedDepthRangesTests.hpp" +#include "vktDrawDifferingInterpolationTests.hpp" namespace vkt { @@ -54,6 +55,7 @@ void createChildren (tcu::TestCaseGroup* group) group->addChild(new ShaderDrawParametersTests (testCtx)); group->addChild(createNegativeViewportHeightTests (testCtx)); group->addChild(createInvertedDepthRangesTests (testCtx)); + group->addChild(createDifferingInterpolationTests (testCtx)); } } // anonymous diff --git a/external/vulkancts/mustpass/1.1.0/vk-default.txt b/external/vulkancts/mustpass/1.1.0/vk-default.txt index 84af97c..4d0f7a5 100755 --- a/external/vulkancts/mustpass/1.1.0/vk-default.txt +++ b/external/vulkancts/mustpass/1.1.0/vk-default.txt @@ -209694,6 +209694,10 @@ dEQP-VK.draw.inverted_depth_ranges.depthclamp_deltalarge dEQP-VK.draw.inverted_depth_ranges.nodepthclamp_deltasmall dEQP-VK.draw.inverted_depth_ranges.nodepthclamp_deltaone dEQP-VK.draw.inverted_depth_ranges.nodepthclamp_deltalarge +dEQP-VK.draw.differing_interpolation.flat_0 +dEQP-VK.draw.differing_interpolation.flat_1 +dEQP-VK.draw.differing_interpolation.noperspective_0 +dEQP-VK.draw.differing_interpolation.noperspective_1 dEQP-VK.compute.basic.empty_shader dEQP-VK.compute.basic.ubo_to_ssbo_single_invocation dEQP-VK.compute.basic.ubo_to_ssbo_single_group