From 20f01e7fd04a5fa2de7b2f185b3cdc2771db506f Mon Sep 17 00:00:00 2001 From: John Kessenich Date: Mon, 12 Dec 2016 11:41:43 -0700 Subject: [PATCH] Fix last commit; EOptionKeepUncalled incorrect enum bug. --- StandAlone/StandAlone.cpp | 2 +- glslang/Include/revision.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/StandAlone/StandAlone.cpp b/StandAlone/StandAlone.cpp index 84c80f5..d40673c 100644 --- a/StandAlone/StandAlone.cpp +++ b/StandAlone/StandAlone.cpp @@ -83,7 +83,7 @@ enum TOptions { EOptionAutoMapBindings = (1 << 19), EOptionFlattenUniformArrays = (1 << 20), EOptionNoStorageFormat = (1 << 21), - EOptionKeepUncalled = (1 << 21), + EOptionKeepUncalled = (1 << 22), }; // diff --git a/glslang/Include/revision.h b/glslang/Include/revision.h index 2f391b6..5fda0eb 100644 --- a/glslang/Include/revision.h +++ b/glslang/Include/revision.h @@ -2,5 +2,5 @@ // For the version, it uses the latest git tag followed by the number of commits. // For the date, it uses the current date (when then script is run). -#define GLSLANG_REVISION "Overload400-PrecQual.1688" -#define GLSLANG_DATE "09-Dec-2016" +#define GLSLANG_REVISION "Overload400-PrecQual.1689" +#define GLSLANG_DATE "12-Dec-2016" -- 2.7.4