Versioning: Address #1255: Move to semantic versioning.
Still missing is automation and final decisions on mechanisms in general.
This commit is contained in:
parent
41e24fdb83
commit
c6c80a6e48
6 changed files with 38 additions and 19 deletions
|
|
@ -1577,14 +1577,17 @@ namespace glslang {
|
|||
|
||||
#include "../Include/revision.h"
|
||||
|
||||
#define QUOTE(s) #s
|
||||
#define STR(n) QUOTE(n)
|
||||
|
||||
const char* GetEsslVersionString()
|
||||
{
|
||||
return "OpenGL ES GLSL 3.20 glslang Khronos." GLSLANG_REVISION " " GLSLANG_DATE;
|
||||
return "OpenGL ES GLSL 3.20 glslang Khronos. " STR(GLSLANG_MINOR_VERSION) "." STR(GLSLANG_PATCH_LEVEL);
|
||||
}
|
||||
|
||||
const char* GetGlslVersionString()
|
||||
{
|
||||
return "4.60 glslang Khronos." GLSLANG_REVISION " " GLSLANG_DATE;
|
||||
return "4.60 glslang Khronos. " STR(GLSLANG_MINOR_VERSION) "." STR(GLSLANG_PATCH_LEVEL);
|
||||
}
|
||||
|
||||
int GetKhronosToolId()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue