summaryrefslogtreecommitdiffstats
path: root/src/compiler/spirv/GLSL.std.450.h
diff options
context:
space:
mode:
authorLionel Landwerlin <[email protected]>2017-01-25 14:04:05 +0000
committerLionel Landwerlin <[email protected]>2017-01-25 17:22:23 +0000
commit173dd60ced6789cac2ebb6744ff99e6b14f34d5a (patch)
tree2dab8ff5a92438915aa3c7f7a57d81bc7a075b17 /src/compiler/spirv/GLSL.std.450.h
parent05e2d99bf2fd08b8a2afaa2a0413993a3bf97ff7 (diff)
spirv: bump headers to SPIRV 1.1
Signed-off-by: Lionel Landwerlin <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/compiler/spirv/GLSL.std.450.h')
-rw-r--r--src/compiler/spirv/GLSL.std.450.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/compiler/spirv/GLSL.std.450.h b/src/compiler/spirv/GLSL.std.450.h
index d1c9b5c1d44..54cc00e9a88 100644
--- a/src/compiler/spirv/GLSL.std.450.h
+++ b/src/compiler/spirv/GLSL.std.450.h
@@ -1,5 +1,5 @@
/*
-** Copyright (c) 2014-2015 The Khronos Group Inc.
+** Copyright (c) 2014-2016 The Khronos Group Inc.
**
** Permission is hereby granted, free of charge, to any person obtaining a copy
** of this software and/or associated documentation files (the "Materials"),
@@ -27,8 +27,8 @@
#ifndef GLSLstd450_H
#define GLSLstd450_H
-const int GLSLstd450Version = 99;
-const int GLSLstd450Revision = 3;
+static const int GLSLstd450Version = 100;
+static const int GLSLstd450Revision = 3;
enum GLSLstd450 {
GLSLstd450Bad = 0, // Don't use
@@ -83,7 +83,7 @@ enum GLSLstd450 {
GLSLstd450UClamp = 44,
GLSLstd450SClamp = 45,
GLSLstd450FMix = 46,
- GLSLstd450IMix = 47,
+ GLSLstd450IMix = 47, // Reserved
GLSLstd450Step = 48,
GLSLstd450SmoothStep = 49,
@@ -121,6 +121,10 @@ enum GLSLstd450 {
GLSLstd450InterpolateAtSample = 77,
GLSLstd450InterpolateAtOffset = 78,
+ GLSLstd450NMin = 79,
+ GLSLstd450NMax = 80,
+ GLSLstd450NClamp = 81,
+
GLSLstd450Count
};