Removed '&' in FrustumCull() method.
This commit is contained in:
parent
0b4247dff6
commit
5b15048c38
|
@ -25,6 +25,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.2 2005/09/28 19:57:18 m_di_benedetto
|
||||||
|
#included aabb tree base.
|
||||||
|
|
||||||
Revision 1.1 2005/09/26 18:33:16 m_di_benedetto
|
Revision 1.1 2005/09/26 18:33:16 m_di_benedetto
|
||||||
First Commit.
|
First Commit.
|
||||||
|
|
||||||
|
@ -93,7 +96,7 @@ public:
|
||||||
ClassType::InitializeNodeFlagsRec(pRoot);
|
ClassType::InitializeNodeFlagsRec(pRoot);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void FrustumCull(TreeType & tree, const Plane3<ScalarType> & frustumPlanes[6], const unsigned int minNodeObjectsCount) {
|
static inline void FrustumCull(TreeType & tree, const Plane3<ScalarType> frustumPlanes[6], const unsigned int minNodeObjectsCount) {
|
||||||
NodeType * pRoot = tree.pRoot;
|
NodeType * pRoot = tree.pRoot;
|
||||||
if (pRoot == 0) {
|
if (pRoot == 0) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue