From 6f2d9475bb5ff275593290098d8f69ef47b958e1 Mon Sep 17 00:00:00 2001 From: David Rose Date: Sun, 15 Oct 2006 16:05:39 +0000 Subject: [PATCH] expose SceneGraphAnalyzer --- panda/src/pgraph/sceneGraphAnalyzer.cxx | 10 +++++----- panda/src/pgraph/sceneGraphAnalyzer.h | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/panda/src/pgraph/sceneGraphAnalyzer.cxx b/panda/src/pgraph/sceneGraphAnalyzer.cxx index 85d7b8772f..60f3f50aed 100644 --- a/panda/src/pgraph/sceneGraphAnalyzer.cxx +++ b/panda/src/pgraph/sceneGraphAnalyzer.cxx @@ -36,7 +36,7 @@ //////////////////////////////////////////////////////////////////// // Function: SceneGraphAnalyzer::Constructor -// Access: Public +// Access: Published // Description: //////////////////////////////////////////////////////////////////// SceneGraphAnalyzer:: @@ -46,7 +46,7 @@ SceneGraphAnalyzer() { //////////////////////////////////////////////////////////////////// // Function: SceneGraphAnalyzer::Destructor -// Access: Public +// Access: Published // Description: //////////////////////////////////////////////////////////////////// SceneGraphAnalyzer:: @@ -55,7 +55,7 @@ SceneGraphAnalyzer:: //////////////////////////////////////////////////////////////////// // Function: SceneGraphAnalyzer::clear -// Access: Public +// Access: Published // Description: Resets all of the data in the analyzer in preparation // for a new run. //////////////////////////////////////////////////////////////////// @@ -94,7 +94,7 @@ clear() { //////////////////////////////////////////////////////////////////// // Function: SceneGraphAnalyzer::add_node -// Access: Public +// Access: Published // Description: Adds a new node to the set of data for analysis. // Normally, this would only be called once, and passed // the top of the scene graph, but it's possible to @@ -108,7 +108,7 @@ add_node(PandaNode *node) { //////////////////////////////////////////////////////////////////// // Function: SceneGraphAnalyzer::write -// Access: Public +// Access: Published // Description: Describes all the data collected. //////////////////////////////////////////////////////////////////// void SceneGraphAnalyzer:: diff --git a/panda/src/pgraph/sceneGraphAnalyzer.h b/panda/src/pgraph/sceneGraphAnalyzer.h index 797c5a0fbc..6f958b6d66 100644 --- a/panda/src/pgraph/sceneGraphAnalyzer.h +++ b/panda/src/pgraph/sceneGraphAnalyzer.h @@ -37,7 +37,7 @@ class Texture; // collect interesting statistics on it. //////////////////////////////////////////////////////////////////// class EXPCL_PANDA SceneGraphAnalyzer { -public: +PUBLISHED: SceneGraphAnalyzer(); ~SceneGraphAnalyzer();