| 221 | } |
| 222 | } |
| 223 | void DefaultDebugDrawer::postFindVisibleObjects(SceneManager* source, |
| 224 | SceneManager::IlluminationRenderStage irs, Viewport* v) |
| 225 | { |
| 226 | auto queue = source->getRenderQueue(); |
| 227 | if (mLines.getCurrentVertexCount()) |
| 228 | { |
| 229 | mLines.end(); |
| 230 | mLines._updateRenderQueue(queue); |
| 231 | } |
| 232 | if (mAxes.getCurrentVertexCount()) |
| 233 | { |
| 234 | mAxes.end(); |
| 235 | mAxes._updateRenderQueue(queue); |
| 236 | } |
| 237 | |
| 238 | if (mStatic) |
| 239 | { |
| 240 | mLines._updateRenderQueue(queue); |
| 241 | mAxes._updateRenderQueue(queue); |
| 242 | } |
| 243 | } |
| 244 | |
| 245 | } /* namespace Ogre */ |
nothing calls this directly
no test coverage detected