summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-reflection-api.cpp
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2021-03-25 09:41:53 -0700
committerGitHub <noreply@github.com>2021-03-25 09:41:53 -0700
commite050035e0b7d3f257a46bc1cb644163026cb1b23 (patch)
treee4a38fa4c2f26313c2d374a19c5a4a1904ffdeb1 /source/slang/slang-reflection-api.cpp
parent98afb421f408aa8651afff3dba1b21fad71131fe (diff)
Improve Vulkan shader-objects implementation. (#1765)
* Improve Vulkan shader-objects implementation. 1. Null bindings no longer crashes. 2. No longer copies push constants to staging CPU buffer before setting it into command buffer. The entry-point shader object now directly sets it into command buffer upon `bindObject` call. * Update comments * Fix * Re-enable 3 tests. Improved vulkan implementation so that each shader object is responsible for creating descriptor sets on-demand. Fixed slang reflection to correctly report `ParameterBlock` binding. * Fix gcc compile error.
Diffstat (limited to 'source/slang/slang-reflection-api.cpp')
-rw-r--r--source/slang/slang-reflection-api.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/slang/slang-reflection-api.cpp b/source/slang/slang-reflection-api.cpp
index cd141a622..2031b4a0f 100644
--- a/source/slang/slang-reflection-api.cpp
+++ b/source/slang/slang-reflection-api.cpp
@@ -1152,6 +1152,10 @@ namespace Slang
{
return SLANG_BINDING_TYPE_SAMPLER;
}
+ else if (as<ParameterBlockType>(type))
+ {
+ return SLANG_BINDING_TYPE_PARAMETER_BLOCK;
+ }
else
{
return SLANG_BINDING_TYPE_UNKNOWN;