Skip to content

Commit 44929d9

Browse files
authored
[slang-cpp-extractor] Don't modify generated source if there is no change. (shader-slang#1530)
1 parent a2a7c4d commit 44929d9

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tools/slang-cpp-extractor/slang-cpp-extractor-main.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -1924,6 +1924,15 @@ SlangResult CPPExtractorApp::writeAllText(const Slang::String& fileName, const U
19241924
{
19251925
try
19261926
{
1927+
if (File::exists(fileName))
1928+
{
1929+
String existingText;
1930+
if (readAllText(fileName, existingText) == SLANG_OK)
1931+
{
1932+
if (existingText == text)
1933+
return SLANG_OK;
1934+
}
1935+
}
19271936
StreamWriter writer(new FileStream(fileName, FileMode::Create));
19281937
writer.Write(text);
19291938
}

0 commit comments

Comments
 (0)