summaryrefslogtreecommitdiff
path: root/slang.h
diff options
context:
space:
mode:
authorTim Foley <tfoleyNV@users.noreply.github.com>2017-07-07 09:14:18 -0700
committerGitHub <noreply@github.com>2017-07-07 09:14:18 -0700
commit975e4b326cd2ef3ef0341d1fb7509315b9dee555 (patch)
tree09c8ef6014eb49fe9a173600a5b8639d4695c34e /slang.h
parentc47f23c2e61538c55819363f9db47ce946649027 (diff)
parentd35b4d4bc62beebaa56b949a1ac59470192b5dfc (diff)
Merge pull request #58 from tfoleyNV/bug-57
Bug 57
Diffstat (limited to 'slang.h')
-rw-r--r--slang.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/slang.h b/slang.h
index 926ef531d..b6f35f255 100644
--- a/slang.h
+++ b/slang.h
@@ -358,7 +358,9 @@ extern "C"
SLANG_TYPE_KIND_CONSTANT_BUFFER,
SLANG_TYPE_KIND_RESOURCE,
SLANG_TYPE_KIND_SAMPLER_STATE,
-
+ SLANG_TYPE_KIND_TEXTURE_BUFFER,
+ SLANG_TYPE_KIND_SHADER_STORAGE_BUFFER,
+
SLANG_TYPE_KIND_COUNT,
};
@@ -547,6 +549,8 @@ namespace slang
ConstantBuffer = SLANG_TYPE_KIND_CONSTANT_BUFFER,
Resource = SLANG_TYPE_KIND_RESOURCE,
SamplerState = SLANG_TYPE_KIND_SAMPLER_STATE,
+ TextureBuffer = SLANG_TYPE_KIND_TEXTURE_BUFFER,
+ ShaderStorageBuffer = SLANG_TYPE_KIND_SHADER_STORAGE_BUFFER,
};
enum ScalarType : SlangScalarType