From 13be5ce3985b4bb43fdcf33c952acd73c196d3e0 Mon Sep 17 00:00:00 2001 From: David Rose Date: Thu, 14 Oct 2004 18:22:57 +0000 Subject: [PATCH] output draw_order too --- panda/src/pgraph/cullBinAttrib.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/pgraph/cullBinAttrib.cxx b/panda/src/pgraph/cullBinAttrib.cxx index ee6a1bebb8..4fea0d49d6 100644 --- a/panda/src/pgraph/cullBinAttrib.cxx +++ b/panda/src/pgraph/cullBinAttrib.cxx @@ -54,7 +54,7 @@ output(ostream &out) const { if (_bin_name.empty()) { out << "(default)"; } else { - out << _bin_name; + out << _bin_name << "," << _draw_order; } }