You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (int j = 0; j < CHLSLCompiler::RequiredArgumentCount; j++)
120
109
{
121
-
if (arguments[i] == required_arguments[j]) {
110
+
if (arguments[i] == CHLSLCompiler::RequiredArguments[j]) {
122
111
found_arg_flags[j] = true;
123
112
break;
124
113
}
125
114
}
126
115
}
127
-
for (int j = 0; j < required_arg_size; j++)
116
+
for (int j = 0; j < CHLSLCompiler::RequiredArgumentCount; j++)
128
117
{
129
118
if (!found_arg_flags[j]) {
130
-
logger.log("Required compile flag not found %ls. This flag will be force enabled as it is required by Nabla.", system::ILogger::ELL_WARNING, required_arguments[j]);
131
-
arguments.push_back(required_arguments[j]);
119
+
logger.log("Required compile flag not found %ls. This flag will be force enabled as it is required by Nabla.", system::ILogger::ELL_WARNING, CHLSLCompiler::RequiredArguments[j]);
0 commit comments