From bb17f6d114ea2864f580b18feaf4bffba4224c71 Mon Sep 17 00:00:00 2001 From: Slawomir Cygan Date: Mon, 2 Mar 2020 14:35:30 +0100 Subject: [PATCH] Fix dEQP-VK.subgroups.ballot.framebuffer.* to use core API This test group was mistakenly using VK_EXT_shader_subgroups_ballot extension and int64 feature, effectively duplicating the dEQP-VK.subgroups.ballot.ext_shader_subgroup_ballot.framebuffer test group. This fix makes this group use core API. Components: Vulkan VK-GL-CTS Issue: 2249 Affects: dEQP-VK.subgroups.ballot.framebuffer.* Change-Id: Id884d6e5ea46fe1eae749e2aec123a5863b2cc81 --- .../modules/vulkan/subgroups/vktSubgroupsBallotTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/vulkancts/modules/vulkan/subgroups/vktSubgroupsBallotTests.cpp b/external/vulkancts/modules/vulkan/subgroups/vktSubgroupsBallotTests.cpp index 11ccf896e..a148cebd2 100755 --- a/external/vulkancts/modules/vulkan/subgroups/vktSubgroupsBallotTests.cpp +++ b/external/vulkancts/modules/vulkan/subgroups/vktSubgroupsBallotTests.cpp @@ -1113,7 +1113,7 @@ tcu::TestCaseGroup* createSubgroupsBallotTests(tcu::TestContext& testCtx) for (int stageIndex = 0; stageIndex < DE_LENGTH_OF_ARRAY(stages); ++stageIndex) { - CaseDefinition caseDef = {stages[stageIndex],de::SharedPtr(new bool), DE_TRUE, DE_FALSE}; + CaseDefinition caseDef = {stages[stageIndex],de::SharedPtr(new bool), DE_FALSE, DE_FALSE}; addFunctionCaseWithPrograms(framebufferGroup.get(), getShaderStageName(caseDef.shaderStage), "", supportedCheck, initFrameBufferPrograms, noSSBOtest, caseDef); caseDef.extShaderSubGroupBallotTests = DE_TRUE; -- 2.34.1