diff options
| author | Tim Foley <tfoleyNV@users.noreply.github.com> | 2017-07-07 09:14:18 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-07 09:14:18 -0700 |
| commit | 975e4b326cd2ef3ef0341d1fb7509315b9dee555 (patch) | |
| tree | 09c8ef6014eb49fe9a173600a5b8639d4695c34e /slang.h | |
| parent | c47f23c2e61538c55819363f9db47ce946649027 (diff) | |
| parent | d35b4d4bc62beebaa56b949a1ac59470192b5dfc (diff) | |
Merge pull request #58 from tfoleyNV/bug-57
Bug 57
Diffstat (limited to 'slang.h')
| -rw-r--r-- | slang.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |
