From 15f44d52b15429e8dc9753a97cfcff5d48214de6 Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 8 Aug 2008 19:31:37 +0000 Subject: [PATCH] don't need all that hashtable output --- panda/src/pgraph/renderState.cxx | 4 ++-- panda/src/pgraph/transformState.cxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/panda/src/pgraph/renderState.cxx b/panda/src/pgraph/renderState.cxx index 5304e498b8..39a06949c3 100644 --- a/panda/src/pgraph/renderState.cxx +++ b/panda/src/pgraph/renderState.cxx @@ -840,8 +840,8 @@ write(ostream &out, int indent_level) const { const Attribute &attribute = (*ai); attribute._attrib->write(out, indent_level + 2); } - indent(out, indent_level + 2) << _composition_cache << "\n"; - indent(out, indent_level + 2) << _invert_composition_cache << "\n"; + // indent(out, indent_level + 2) << _composition_cache << "\n"; + // indent(out, indent_level + 2) << _invert_composition_cache << "\n"; } //////////////////////////////////////////////////////////////////// diff --git a/panda/src/pgraph/transformState.cxx b/panda/src/pgraph/transformState.cxx index 59ca55b9ac..cdf6c9c9bc 100644 --- a/panda/src/pgraph/transformState.cxx +++ b/panda/src/pgraph/transformState.cxx @@ -925,8 +925,8 @@ output(ostream &out) const { void TransformState:: write(ostream &out, int indent_level) const { indent(out, indent_level) << *this << "\n"; - indent(out, indent_level + 2) << _composition_cache << "\n"; - indent(out, indent_level + 2) << _invert_composition_cache << "\n"; + // indent(out, indent_level + 2) << _composition_cache << "\n"; + // indent(out, indent_level + 2) << _invert_composition_cache << "\n"; } ////////////////////////////////////////////////////////////////////