Merge "Remove invalid precision qualifier usage" into vulkan-cts-1.0.1
authorPyry Haulos <phaulos@google.com>
Tue, 20 Sep 2016 22:48:44 +0000 (18:48 -0400)
committerGerrit Code Review <gerrit@gerrit.khronos.org>
Tue, 20 Sep 2016 22:48:44 +0000 (18:48 -0400)
external/vulkancts/modules/vulkan/pipeline/vktPipelineVertexInputTests.cpp

index 167860e..4989839 100644 (file)
@@ -442,7 +442,7 @@ std::string VertexInputTest::getGlslInputDeclarations (void) const
        {
                const GlslTypeDescription& glslTypeDesc = s_glslTypeDescriptions[m_attributeInfos[attributeNdx].glslType];
 
-               glslInputs << "layout(location = " << location << ") in highp " << glslTypeDesc.name << " attr" << attributeNdx << ";\n";
+               glslInputs << "layout(location = " << location << ") in " << glslTypeDesc.name << " attr" << attributeNdx << ";\n";
                location += glslTypeDesc.vertexInputCount;
        }