diff options
author | don bright <hugh.m.bright@gmail.com> | 2013-03-03 15:22:36 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2013-03-03 15:22:36 (GMT) |
commit | 0f6b76cf2125828ce11ec9f6f47cfc26860d3571 (patch) | |
tree | 62e30a3bbcacfcf1a22134f6ffad6aaefcc295b6 /tests/csgtestcore.cc | |
parent | eb1f73de0393bd890c9648932ae2e04de2c65ba3 (diff) |
move csg chain prep code to CsgInfo.h, move defaults to rendersettings.h
Diffstat (limited to 'tests/csgtestcore.cc')
-rw-r--r-- | tests/csgtestcore.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/csgtestcore.cc b/tests/csgtestcore.cc index dd83462..02ca0be 100644 --- a/tests/csgtestcore.cc +++ b/tests/csgtestcore.cc @@ -166,8 +166,8 @@ int csgtestcore(int argc, char *argv[], test_type_e test_type) Tree tree(root_node); - CsgInfo_OpenCSG csgInfo = CsgInfo_OpenCSG(); - int result = opencsg_prep( tree, root_node, csgInfo ); + CsgInfo csgInfo = CsgInfo(); + int result = csgInfo.prep_chains( tree ); if ( result == 1 ) return result; fs::current_path(original_path); |