summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-reflection-json.cpp
diff options
context:
space:
mode:
authorCopilot <198982749+Copilot@users.noreply.github.com>2025-07-24 22:45:11 -0700
committerGitHub <noreply@github.com>2025-07-25 05:45:11 +0000
commitc5091f0ae3a8b816af893e84ef289f745acf39dc (patch)
tree2a544b068bf5e5070da06e06ec0052d7300b9fe6 /source/slang/slang-reflection-json.cpp
parent528ca0d0e55df88a9a97ba071ae803a62a34ae5a (diff)
Add combined texture-sampler flag to reflection API to differentiate Texture2D from Sampler2D (#7901)
* Initial plan * Add SLANG_TEXTURE_COMBINED_FLAG to differentiate combined texture-samplers Co-authored-by: csyonghe <2652293+csyonghe@users.noreply.github.com> * Fix regression in hlsl-to-vulkan-combined test by updating expected output Co-authored-by: csyonghe <2652293+csyonghe@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: csyonghe <2652293+csyonghe@users.noreply.github.com>
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)
{