Cleanup: replace NB with NOTE in comments

This commit is contained in:
2021-07-21 13:05:39 +10:00
parent dc8a924efa
commit 265c3a4724
16 changed files with 48 additions and 51 deletions

View File

@@ -993,7 +993,7 @@ void OSLCompiler::parameter_array(const char *name, const float f[], int arrayle
void OSLCompiler::parameter_color_array(const char *name, const array<float3> &f)
{
/* NB: cycles float3 type is actually 4 floats! need to use an explicit array */
/* NOTE: cycles float3 type is actually 4 floats! need to use an explicit array. */
array<float[3]> table(f.size());
for (int i = 0; i < f.size(); ++i) {