| 107 | //----------------------------------------------------------------------------- |
| 108 | |
| 109 | void OcclusionVolume::_renderObject( ObjectRenderInst* ri, SceneRenderState* state, BaseMatInstance* overrideMat ) |
| 110 | { |
| 111 | Parent::_renderObject( ri, state, overrideMat ); |
| 112 | |
| 113 | #ifdef DEBUG_DRAW |
| 114 | if( state->isDiffusePass() ) |
| 115 | DebugDrawer::get()->drawPolyhedronDebugInfo( mPolyhedron, getTransform(), getScale() ); |
| 116 | #endif |
| 117 | } |
| 118 | |
| 119 | //----------------------------------------------------------------------------- |
| 120 |
nothing calls this directly
no test coverage detected