| 326 | } |
| 327 | |
| 328 | void RenderPassManager::assignSharedXform( SharedTransformType stt, const MatrixF &xfm ) |
| 329 | { |
| 330 | AssertFatal(stt == View || stt == Projection, "Bad shared transform type"); |
| 331 | if(stt == View) |
| 332 | mMatrixSet->setSceneView(xfm); |
| 333 | else |
| 334 | mMatrixSet->setSceneProjection(xfm); |
| 335 | } |
| 336 | |
| 337 | // Script interface |
| 338 |
no outgoing calls
no test coverage detected