Commit 9e55f633 by John Kessenich

Include specification revision as part of the version string.

parent 279012d8
......@@ -2545,9 +2545,9 @@ namespace glslang {
void GetSpirvVersion(std::string& version)
{
const int bufSize = 10;
const int bufSize = 100;
char buf[bufSize];
snprintf(buf, bufSize, "0.%d", spv::Version);
snprintf(buf, bufSize, "%d, Revision %d", spv::Version, spv::Revision);
version = buf;
}
......
......@@ -50,6 +50,7 @@ namespace spv {
const int MagicNumber = 0x07230203;
const int Version = 99;
const int Revision = 30;
typedef unsigned int Id;
......@@ -679,6 +680,7 @@ enum Op {
const int SpvMagicNumber = 0x07230203;
const int SpvVersion = 99;
const int SpvRevision = 30;
typedef unsigned int SpvId;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment