Skip to content

Commit 7845730

Browse files
committed
Bump revision to 4, for SPIR-V 1.5.
1 parent 05836bd commit 7845730

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

include/spirv/unified1/spirv.core.grammar.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"magic_number" : "0x07230203",
2828
"major_version" : 1,
2929
"minor_version" : 5,
30-
"revision" : 3,
30+
"revision" : 4,
3131
"instruction_printing_class" : [
3232
{
3333
"tag" : "@exclude"

include/spirv/unified1/spirv.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static class Specification
4949
{
5050
public const uint MagicNumber = 0x07230203;
5151
public const uint Version = 0x00010500;
52-
public const uint Revision = 3;
52+
public const uint Revision = 4;
5353
public const uint OpCodeMask = 0xffff;
5454
public const uint WordCountShift = 16;
5555

include/spirv/unified1/spirv.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@
5454
typedef unsigned int SpvId;
5555

5656
#define SPV_VERSION 0x10500
57-
#define SPV_REVISION 3
57+
#define SPV_REVISION 4
5858

5959
static const unsigned int SpvMagicNumber = 0x07230203;
6060
static const unsigned int SpvVersion = 0x00010500;
61-
static const unsigned int SpvRevision = 3;
61+
static const unsigned int SpvRevision = 4;
6262
static const unsigned int SpvOpCodeMask = 0xffff;
6363
static const unsigned int SpvWordCountShift = 16;
6464

include/spirv/unified1/spirv.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ namespace spv {
5050
typedef unsigned int Id;
5151

5252
#define SPV_VERSION 0x10500
53-
#define SPV_REVISION 3
53+
#define SPV_REVISION 4
5454

5555
static const unsigned int MagicNumber = 0x07230203;
5656
static const unsigned int Version = 0x00010500;
57-
static const unsigned int Revision = 3;
57+
static const unsigned int Revision = 4;
5858
static const unsigned int OpCodeMask = 0xffff;
5959
static const unsigned int WordCountShift = 16;
6060

include/spirv/unified1/spirv.hpp11

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ namespace spv {
5050
typedef unsigned int Id;
5151

5252
#define SPV_VERSION 0x10500
53-
#define SPV_REVISION 3
53+
#define SPV_REVISION 4
5454

5555
static const unsigned int MagicNumber = 0x07230203;
5656
static const unsigned int Version = 0x00010500;
57-
static const unsigned int Revision = 3;
57+
static const unsigned int Revision = 4;
5858
static const unsigned int OpCodeMask = 0xffff;
5959
static const unsigned int WordCountShift = 16;
6060

include/spirv/unified1/spirv.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
],
5656
"MagicNumber": 119734787,
5757
"Version": 66816,
58-
"Revision": 3,
58+
"Revision": 4,
5959
"OpCodeMask": 65535,
6060
"WordCountShift": 16
6161
},

include/spirv/unified1/spirv.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
spv = {
4646
MagicNumber = 0x07230203,
4747
Version = 0x00010500,
48-
Revision = 3,
48+
Revision = 4,
4949
OpCodeMask = 0xffff,
5050
WordCountShift = 16,
5151

include/spirv/unified1/spirv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
spv = {
4646
'MagicNumber' : 0x07230203,
4747
'Version' : 0x00010500,
48-
'Revision' : 3,
48+
'Revision' : 4,
4949
'OpCodeMask' : 0xffff,
5050
'WordCountShift' : 16,
5151

include/spirv/unified1/spv.d

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ module spv;
5252

5353
enum uint MagicNumber = 0x07230203;
5454
enum uint Version = 0x00010500;
55-
enum uint Revision = 3;
55+
enum uint Revision = 4;
5656
enum uint OpCodeMask = 0xffff;
5757
enum uint WordCountShift = 16;
5858

tools/buildHeaders/header.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ namespace {
7070

7171
static const int DocMagicNumber = 0x07230203;
7272
static const int DocVersion = 0x00010500;
73-
static const int DocRevision = 3;
74-
#define DocRevisionString "3"
73+
static const int DocRevision = 4;
74+
#define DocRevisionString "4"
7575
static const std::string DocCopyright;
7676
static const std::string DocComment1;
7777
static const std::string DocComment2;

0 commit comments

Comments
 (0)