mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
reduce max search depth
This commit is contained in:
parent
6a8b0b3913
commit
676919e623
@ -43,10 +43,11 @@
|
|||||||
|
|
||||||
#include "plist.h"
|
#include "plist.h"
|
||||||
|
|
||||||
int NodePath::_max_search_depth = 10000;
|
// stack seems to overflow on Intel C++ at 8000. If we need more than
|
||||||
|
// 7500, need to increase stack size.
|
||||||
|
int NodePath::_max_search_depth = 7500;
|
||||||
TypeHandle NodePath::_type_handle;
|
TypeHandle NodePath::_type_handle;
|
||||||
|
|
||||||
|
|
||||||
// This class is used in prepare_scene() to traverse the scene graph
|
// This class is used in prepare_scene() to traverse the scene graph
|
||||||
// and register textures and geoms with the gsg.
|
// and register textures and geoms with the gsg.
|
||||||
class ScenePrepareVisitor : public TraverserVisitor<NodeTransitionWrapper, NullLevelState> {
|
class ScenePrepareVisitor : public TraverserVisitor<NodeTransitionWrapper, NullLevelState> {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user