Changeset 377 for branches/Dirk_RenderTraversalWork/Source/System/Action/RenderTraversal/testOcclusionCulling.cpp
- Timestamp:
- 11/01/06 16:31:27 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Dirk_RenderTraversalWork/Source/System/Action/RenderTraversal/testOcclusionCulling.cpp
r376 r377 534 534 { 535 535 Real32 cover = tact->getScreenLODCoverageThreshold(); 536 cover+=0.00 2;536 cover+=0.001; 537 537 tact->setScreenLODCoverageThreshold(cover); 538 538 std::cout << "ScreenLOD Coverage Threshold now: " << cover << std::endl; … … 543 543 { 544 544 Real32 covera = tact->getScreenLODCoverageThreshold(); 545 covera-=0.00 2;545 covera-=0.001; 546 546 tact->setScreenLODCoverageThreshold(covera); 547 547 std::cout << "ScreenLOD Coverage Threshold now: " << covera << std::endl; 548 } 549 break; 550 551 case 'D': 552 { 553 Real32 user_dega = tact->getScreenLODDegradationFactor(); 554 user_dega+=0.01; 555 tact->setScreenLODDegradationFactor(user_dega); 556 std::cout << "ScreenLOD User Degradation Factor now: " << user_dega << std::endl; 557 } 558 break; 559 560 case 'd': 561 { 562 Real32 user_deg = tact->getScreenLODDegradationFactor(); 563 user_deg-=0.01; 564 tact->setScreenLODDegradationFactor(user_deg); 565 std::cout << "ScreenLOD User Degradation Factor now: " << user_deg << std::endl; 548 566 } 549 567 break;
