egg2pg: slight comment cleanup in characterMaker.cxx

[skip ci]
This commit is contained in:
rdb 2021-11-16 17:55:32 +01:00
parent 0f7a575ac0
commit 6adb6be4b5

View File

@ -36,10 +36,6 @@
using std::string; using std::string;
/** /**
* *
*/ */
@ -589,16 +585,15 @@ determine_bin_home(EggBin *egg_bin) {
// ahead and make an implicit node for the joint. // ahead and make an implicit node for the joint.
if (egg_group->get_dcs_type() == EggGroup::DC_none) { if (egg_group->get_dcs_type() == EggGroup::DC_none) {
/* // Unless the user specifically forbade exposing the joint by putting an
* Unless the user specifically forbade exposing the joint by putting an // explicit "<DCS> { none }" entry in the joint. In this case, we return
* explicit "<DCS> { none }" entry in the joint. In this case, we return NULL // nullptr to treat the geometry as dynamic (and animate it by animating
* to treat the geometry as dynamic (and animate it by animating its // its vertices), but display lists and vertex buffers will perform better
* vertices), but display lists and vertex buffers will perform better if more // if more geometry is rigid. There's a tradeoff, though, since the cull
* geometry is rigid. There's a tradeoff, though, since the cull traverser // traverser will have to do more work with additional transforms in the
* will have to do more work with additional transforms in the scene graph, // scene graph, and this may also break up the geometry into more
* and this may also break up the geometry into more individual pieces, which // individual pieces, which is the biggest limiting factor on modern PC
* is the biggest limiting factor on modern PC graphics cards. // graphics cards.
*/
return nullptr; return nullptr;
} }