summaryrefslogtreecommitdiff
path: root/source/slang/slang-reflection-json.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-reflection-json.cpp')
-rw-r--r--source/slang/slang-reflection-json.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/slang/slang-reflection-json.cpp b/source/slang/slang-reflection-json.cpp
index 72855a9b1..ee11b061a 100644
--- a/source/slang/slang-reflection-json.cpp
+++ b/source/slang/slang-reflection-json.cpp
@@ -496,6 +496,11 @@ static void emitReflectionResourceTypeBaseInfoJSON(
writer.maybeComma();
writer << "\"feedback\": true";
}
+ if (shape & SLANG_TEXTURE_COMBINED_FLAG)
+ {
+ writer.maybeComma();
+ writer << "\"combined\": true";
+ }
if (access != SLANG_RESOURCE_ACCESS_READ)
{