Cycles: Code cleanup, remove dead code

This commit is contained in:
Sergey Sharybin 2014-11-27 20:48:51 +05:00
parent 5561a0bbef
commit af18fb8036
1 changed files with 0 additions and 4 deletions

View File

@ -189,11 +189,7 @@ static void register_closure(OSL::ShadingSystem *ss, const char *name, int id, O
/* optimization: it's possible to not use a prepare function at all and
* only initialize the actual class when accessing the closure component
* data, but then we need to map the id to the class somehow */
#ifdef CLOSURE_PREPARE
ss->register_closure(name, id, params, prepare, NULL, NULL);
#else
ss->register_closure(name, id, params, prepare, NULL);
#endif
}
void OSLShader::register_closures(OSLShadingSystem *ss_)