We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb87442 commit 237ddb5Copy full SHA for 237ddb5
tools/nsc/main.cpp
@@ -29,6 +29,13 @@ class ShaderCompiler final : public system::IApplicationFramework
29
30
auto argc = argv.size();
31
32
+#ifndef NBL_DEBUG
33
+ std::string str = argv[0];
34
+ for (auto i=1; i<argc; i++)
35
+ str += " "+argv[i];
36
+ m_logger->log("Arguments Received: %s", ILogger::ELL_DEBUG, str.c_str());
37
+#endif
38
+
39
// expect the first argument to be nsc.exe
40
// second argument should be input: filename of a shader to compile
41
if (argc < 2) {
0 commit comments