From b84313dca13641412ea472cfa520647da1ccb343 Mon Sep 17 00:00:00 2001 From: John Kessenich Date: Wed, 20 Jul 2016 16:03:29 -0600 Subject: [PATCH] Versions: Update version output. Also, the per-build part had stopped auto-updating, which is fixed locally as a git hook. --- StandAlone/StandAlone.cpp | 2 ++ glslang/Include/revision.h | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/StandAlone/StandAlone.cpp b/StandAlone/StandAlone.cpp index 63e9878..c014be2 100644 --- a/StandAlone/StandAlone.cpp +++ b/StandAlone/StandAlone.cpp @@ -596,6 +596,8 @@ int C_DECL main(int argc, char* argv[]) printf("SPIR-V Version %s\n", spirvVersion.c_str()); printf("GLSL.std.450 Version %d, Revision %d\n", GLSLstd450Version, GLSLstd450Revision); printf("Khronos Tool ID %d\n", glslang::GetKhronosToolId()); + printf("GL_KHR_vulkan_glsl version %d\n", 100); + printf("ARB_GL_gl_spirv version %d\n", 100); if (Worklist.empty()) return ESuccess; } diff --git a/glslang/Include/revision.h b/glslang/Include/revision.h index e338849..ca7d044 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 "SPIRV99.947" -#define GLSLANG_DATE "15-Feb-2016" +#define GLSLANG_REVISION "SPIRV99.1321" +#define GLSLANG_DATE "20-Jul-2016" -- 2.7.4