summaryrefslogtreecommitdiff
path: root/source/slang-record-replay/replay/json-consumer.cpp
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2025-05-29 08:05:57 -0700
committerGitHub <noreply@github.com>2025-05-29 08:05:57 -0700
commitfaf042ecc3e688a1a3ffbe1ac44d18dd7ddf441a (patch)
treeb54abb2e65b7791d74335ead396cf762f805ab5c /source/slang-record-replay/replay/json-consumer.cpp
parent45d794f57d453a5564a7360400c5bfc04bf12b31 (diff)
Language version + tuple syntax. (#7230)
* Language version + tuple syntax. * Fix compile error. * regenerate documentation Table of Contents * Fix. * regenerate command line reference * Fix. * Fix. * Fix more test failures. * revert empty line change, * Retrigger CI * #version->#lang * Update source/core/slang-type-text-util.cpp Co-authored-by: ArielG-NV <159081215+ArielG-NV@users.noreply.github.com> * Remove comments. * Fix parsing logic. * Fix parser. * Fix parser. * update test comment * Update options. * regenerate documentation Table of Contents * regenerate command line reference --------- Co-authored-by: slangbot <186143334+slangbot@users.noreply.github.com> Co-authored-by: ArielG-NV <159081215+ArielG-NV@users.noreply.github.com>
Diffstat (limited to 'source/slang-record-replay/replay/json-consumer.cpp')
-rw-r--r--source/slang-record-replay/replay/json-consumer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang-record-replay/replay/json-consumer.cpp b/source/slang-record-replay/replay/json-consumer.cpp
index c0486341e..ba7a13015 100644
--- a/source/slang-record-replay/replay/json-consumer.cpp
+++ b/source/slang-record-replay/replay/json-consumer.cpp
@@ -631,7 +631,7 @@ void JsonConsumer::_writeGlobalSessionDescHelper(
{
_writePair(builder, indent, "structureSize", (uint32_t)desc.structureSize);
_writePair(builder, indent, "apiVersion", (uint32_t)desc.apiVersion);
- _writePair(builder, indent, "languageVersion", (uint32_t)desc.languageVersion);
+ _writePair(builder, indent, "minLanguageVersion", (uint32_t)desc.minLanguageVersion);
_writePair(builder, indent, "enablGLSL", (uint32_t)desc.enableGLSL);
}
}