From 6695e9596df40d36a55cffd0fe84f16522c04b71 Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Fri, 9 Nov 2018 15:31:51 -0800 Subject: [PATCH] Fix heclTest build --- hecl/test/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hecl/test/main.cpp b/hecl/test/main.cpp index 74a6985b4..2a3c8368e 100644 --- a/hecl/test/main.cpp +++ b/hecl/test/main.cpp @@ -128,7 +128,7 @@ struct HECLApplicationCallback : boo::IApplicationCallback static std::string testShader = "HECLOpaque(Texture(0, UV(0)))"; //static std::string testShader = "HECLOpaque(vec3(1.0,1.0,1.0),1.0)"; hecl::Backend::ShaderTag testShaderTag(testShader, 0, 1, 0, 0, boo::Primitive::TriStrips, - hecl::Backend::ReflectionType::None, false, false, false); + hecl::Backend::ReflectionType::None, false, false, false, false); hecl::Frontend::Frontend FE; hecl::Frontend::IR ir = FE.compileSource(testShader, "booTest"); hecl::HECLIR irObj(ir, testShaderTag, 0);