Update external headers.

Now use the headers published at
https://www.khronos.org/registry/spir-v/api/1.0/.
This commit is contained in:
Lei Zhang 2015-11-17 16:00:53 -05:00
parent af9906e4e5
commit 62fcaf1a74

View File

@ -50,12 +50,12 @@
typedef unsigned int SpvId;
#define SPV_VERSION 100
#define SPV_REVISION 1
#define SPV_VERSION 10000
#define SPV_REVISION 2
static const unsigned int SpvMagicNumber = 0x07230203;
static const unsigned int SpvVersion = 100;
static const unsigned int SpvRevision = 1;
static const unsigned int SpvVersion = 0x00010000;
static const unsigned int SpvRevision = 2;
static const unsigned int SpvOpCodeMask = 0xffff;
static const unsigned int SpvWordCountShift = 16;