From 42f8c1587c9c9169281bb8c5b70c35f372b911f6 Mon Sep 17 00:00:00 2001 From: asokolow Date: Fri, 30 Mar 2018 11:30:41 +0200 Subject: [PATCH] Interface mismatch in KHR-GL45.enhanced_layouts.xfb_block_stride There is an interface mismatch between Vertex and Geometry shaders used in this test. VS is lacking an output variable that GS is reading. VK-GL-CTS Issue: 1223 Components: OpenGL Affects: KHR-GL45.enhanced_layouts.xfb_block_stride Change-Id: I597f5dd8b553a0a47fe00eebb701822e9ef8f678 --- external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.cpp b/external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.cpp index 85a92de..c3b995e 100644 --- a/external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.cpp +++ b/external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.cpp @@ -21569,10 +21569,11 @@ std::string XFBBlockStrideTest::getShaderSource(GLuint test_case_index, Utils::S "\n" "in vec4 in_vs;\n" "out vec4 vs_tcs;\n" + "out vec4 tes_gs;\n" "\n" "void main()\n" "{\n" - " vs_tcs = in_vs;\n" + " vs_tcs = tes_gs = in_vs;\n" "}\n" "\n"; static const GLchar* vs_tested = "#version 430 core\n" -- 2.7.4