From: Mikko Rasa Date: Fri, 5 Mar 2021 18:40:09 +0000 (+0200) Subject: Actually call the type validator X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=61c8a3f2f3a39d17fe90ee7b2bce93e771f58a03;hp=3f9340114e490501e85583b55c77fc62dd8093f4;p=libs%2Fgl.git Actually call the type validator --- diff --git a/source/glsl/compiler.cpp b/source/glsl/compiler.cpp index 172bdac6..2a71cfe4 100644 --- a/source/glsl/compiler.cpp +++ b/source/glsl/compiler.cpp @@ -259,6 +259,7 @@ void Compiler::generate(Stage &stage, Mode mode) bool Compiler::validate(Stage &stage) { + TypeValidator().apply(stage); DeclarationValidator().apply(stage); ReferenceValidator().apply(stage);