From b8fd918b252d3868d5215958ce791a4ffcb61793 Mon Sep 17 00:00:00 2001 From: Dae Kim Date: Wed, 30 Oct 2019 12:32:17 +0000 Subject: [PATCH] Add missing write to PointSize The primitive topology is POINT_LIST for test cases covering the vertex stage, but the vertex shader in these cases isn't supplying a value for PontSize. Affects: dEQP-VK.binding_model.buffer_device_address.*.vert Components: Vulkan VK-GL-CTS issue: 2080 Change-Id: Ibbbeb143bf957f9494b1df84e69bc4a01c891c6a --- .../modules/vulkan/binding_model/vktBindingBufferDeviceAddressTests.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/external/vulkancts/modules/vulkan/binding_model/vktBindingBufferDeviceAddressTests.cpp b/external/vulkancts/modules/vulkan/binding_model/vktBindingBufferDeviceAddressTests.cpp index c996d32..fc75adb 100644 --- a/external/vulkancts/modules/vulkan/binding_model/vktBindingBufferDeviceAddressTests.cpp +++ b/external/vulkancts/modules/vulkan/binding_model/vktBindingBufferDeviceAddressTests.cpp @@ -371,6 +371,7 @@ void BufferAddressTestCase::initPrograms (SourceCollections& programCollection) << checks.str() << " uvec4 color = (accum != 0) ? uvec4(0,0,0,0) : uvec4(1,0,0,1);\n" " imageStore(image0_0, ivec2(gl_VertexIndex % " << DIM << ", gl_VertexIndex / " << DIM << "), color);\n" + " gl_PointSize = 1.0f;\n" "}\n"; programCollection.glslSources.add("test") << glu::VertexSource(vss.str()) -- 2.7.4