fix typos in comments, fix show-transparency with M_dual

This commit is contained in:
David Rose 2006-07-31 21:05:10 +00:00
parent ca70808c25
commit 2ed9484f06
2 changed files with 3 additions and 2 deletions

View File

@ -222,14 +222,14 @@ ConfigVariableBool show_vertex_animation
("show-vertex-animation", false,
PRC_DESC("Set this true to flash any objects whose vertices are animated "
"by Panda on the CPU (flash red) or by hardware (flash blue). "
"This only has effect when NDEBUG is defined."));
"This only has effect when NDEBUG is not defined."));
ConfigVariableBool show_transparency
("show-transparency", false,
PRC_DESC("Set this true to flash any objects that are rendered in "
"some transparency mode. The color chosen is based on the "
"particular transparency mode in effect. This only has effect "
"when NDEBUG is defined."));
"when NDEBUG is not defined."));
ConfigVariableBool m_dual
("m-dual", true,

View File

@ -139,6 +139,7 @@ add_object(CullableObject *object, const CullTraverser *traverser) {
case TransparencyAttrib::M_dual:
#ifndef NDEBUG
check_flash_transparency(object->_state, flash_dual_color);
state = object->_state;
#endif
if (!m_dual) {
// If m_dual is configured off, it becomes M_alpha.