|
From: <bul...@us...> - 2013-06-09 05:01:05
|
Revision: 22803
http://sourceforge.net/p/bzflag/code/22803
Author: bullet_catcher
Date: 2013-06-09 05:01:02 +0000 (Sun, 09 Jun 2013)
Log Message:
-----------
Remove unimplemented and unused Occluder::doCullSceneNode() method.
Modified Paths:
--------------
trunk/bzflag/src/scene/Occluder.cxx
trunk/bzflag/src/scene/Occluder.h
Modified: trunk/bzflag/src/scene/Occluder.cxx
===================================================================
--- trunk/bzflag/src/scene/Occluder.cxx 2013-06-09 04:53:08 UTC (rev 22802)
+++ trunk/bzflag/src/scene/Occluder.cxx 2013-06-09 05:01:02 UTC (rev 22803)
@@ -316,14 +316,6 @@
}
-bool Occluder::doCullSceneNode(SceneNode* node)
-{
- // FIXME - not yet implemented
- node = node;
- return false;
-}
-
-
static bool makePlane (const float* p1, const float* p2, const float* pc,
float* r)
{
@@ -481,3 +473,11 @@
return;
}
+
+// Local Variables: ***
+// mode:C++ ***
+// tab-width: 8 ***
+// c-basic-offset: 2 ***
+// indent-tabs-mode: t ***
+// End: ***
+// ex: shiftwidth=2 tabstop=8
Modified: trunk/bzflag/src/scene/Occluder.h
===================================================================
--- trunk/bzflag/src/scene/Occluder.h 2013-06-09 04:53:08 UTC (rev 22802)
+++ trunk/bzflag/src/scene/Occluder.h 2013-06-09 05:01:02 UTC (rev 22803)
@@ -21,7 +21,6 @@
~Occluder();
bool makePlanes(const Frustum* frustum);
IntersectLevel doCullAxisBox(const Extents& exts);
- bool doCullSceneNode(SceneNode* node);
void addScore(unsigned int score);
void divScore();
int getScore() const;
@@ -112,4 +111,3 @@
// indent-tabs-mode: t ***
// End: ***
// ex: shiftwidth=2 tabstop=8
-
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|