Also set gl_PointSize in subgroup quad tests
authorGraeme Leese <gleese@broadcom.com>
Thu, 14 Dec 2017 13:53:45 +0000 (13:53 +0000)
committerAlexander Galazin <Alexander.Galazin@arm.com>
Tue, 19 Dec 2017 14:38:48 +0000 (09:38 -0500)
Affects: dEQP-VK.subgroups.quad.*vertex_framebuffer

Components: Vulkan

VK-GL-CTS issue: 872

Change-Id: Ie73fb744737e079d42792f6c974534e57ae006ef

external/vulkancts/modules/vulkan/subgroups/vktSubgroupsQuadTests.cpp

index 2df51cc..3a17c43 100644 (file)
@@ -212,6 +212,7 @@ void initFrameBufferPrograms (SourceCollections& programCollection, CaseDefiniti
                        << "    result = 1.0f; // Invocation we read from was inactive, so we can't verify results!\n"
                        << "  }\n"
                        << "  gl_Position = in_position;\n"
+                       << "  gl_PointSize = 1.0f;\n"
                        << "}\n";
 
                programCollection.glslSources.add("vert") << glu::VertexSource(src.str()) << vk::ShaderBuildOptions(vk::SPIRV_VERSION_1_3, 0u);