mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 07:37:20 +02:00
remove two debug outs
This commit is contained in:
parent
5d18b68a2e
commit
b05d6e25e3
1 changed files with 1 additions and 2 deletions
|
@ -1838,7 +1838,6 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
void VoxelSystem::hideOutOfView(bool forceFullFrustum) {
|
void VoxelSystem::hideOutOfView(bool forceFullFrustum) {
|
||||||
printf("VoxelSystem::hideOutOfView(bool forceFullFrustum=%s)\n",debug::valueOf(forceFullFrustum));
|
|
||||||
bool showDebugDetails = Menu::getInstance()->isOptionChecked(MenuOption::PipelineWarnings);
|
bool showDebugDetails = Menu::getInstance()->isOptionChecked(MenuOption::PipelineWarnings);
|
||||||
PerformanceWarning warn(showDebugDetails, "hideOutOfView()", showDebugDetails);
|
PerformanceWarning warn(showDebugDetails, "hideOutOfView()", showDebugDetails);
|
||||||
bool widenFrustum = true;
|
bool widenFrustum = true;
|
||||||
|
@ -1869,7 +1868,7 @@ void VoxelSystem::hideOutOfView(bool forceFullFrustum) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!forceFullFrustum && _culledOnce && args.lastViewFrustum.matches(args.thisViewFrustum)) {
|
if (!forceFullFrustum && _culledOnce && args.lastViewFrustum.matches(args.thisViewFrustum)) {
|
||||||
printf("view frustum hasn't changed BAIL!!!\n");
|
//printf("view frustum hasn't changed BAIL!!!\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue