Skip to content

Commit 5c91dc6

Browse files
authored
temp commit, to remove
1 parent e5f6612 commit 5c91dc6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tools/nsc/main.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,14 @@ class ShaderCompiler final : public system::IApplicationFramework
138138
std::fstream output_file(output_filepath, std::ios::out | std::ios::binary);
139139
output_file.write((const char*)compilation_result->getContent()->getPointer(), compilation_result->getContent()->getSize());
140140
output_file.close();
141+
142+
// TODO: remove it
143+
{
144+
std::fstream output_file("C:/temp.spv", std::ios::out | std::ios::binary);
145+
output_file.write((const char*)compilation_result->getContent()->getPointer(), compilation_result->getContent()->getSize());
146+
output_file.close();
147+
}
148+
141149
m_logger->log("Shader compilation successful.");
142150
return true;
143151
}

0 commit comments

Comments
 (0)