Move to SPIR-V 1.5 Rev. 3, bump revision, remove a status from README.

This commit is contained in:
John Kessenich 2020-04-27 02:12:05 -06:00
parent 1b57332746
commit bcf6a2430e
3 changed files with 3 additions and 5 deletions

View file

@ -50,11 +50,11 @@ namespace spv {
typedef unsigned int Id;
#define SPV_VERSION 0x10500
#define SPV_REVISION 1
#define SPV_REVISION 3
static const unsigned int MagicNumber = 0x07230203;
static const unsigned int Version = 0x00010500;
static const unsigned int Revision = 1;
static const unsigned int Revision = 3;
static const unsigned int OpCodeMask = 0xffff;
static const unsigned int WordCountShift = 16;