From db50943898abca5bf39122a62d329c864809f96e Mon Sep 17 00:00:00 2001 From: David Emett Date: Wed, 21 Aug 2019 19:48:38 +0100 Subject: [PATCH] Fix build when DEQP_HAVE_GLSLANG not defined Change-Id: I437a51e03c72b823ae3093fbce178f556b0e23c1 --- external/openglcts/modules/common/glcSpirvUtils.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/external/openglcts/modules/common/glcSpirvUtils.cpp b/external/openglcts/modules/common/glcSpirvUtils.cpp index f3b451d..e510cea 100644 --- a/external/openglcts/modules/common/glcSpirvUtils.cpp +++ b/external/openglcts/modules/common/glcSpirvUtils.cpp @@ -268,12 +268,13 @@ bool compileGlslToSpirV(tcu::TestLog& log, std::string source, glu::ShaderType t #else // DEQP_HAVE_GLSLANG -bool compileGlslToSpirV(tcu::TestLog& log, std::string source, glu::ShaderType type, ShaderBinaryDataType* dst) +bool compileGlslToSpirV(tcu::TestLog& log, std::string source, glu::ShaderType type, ShaderBinaryDataType* dst, SpirvVersion version) { DE_UNREF(log); DE_UNREF(source); DE_UNREF(type); DE_UNREF(dst); + DE_UNREF(version); TCU_THROW(InternalError, "Glslang not available."); -- 2.7.4