| 97 | } |
| 98 | |
| 99 | void RenderView::SetUp(const Matrix& viewProjection) |
| 100 | { |
| 101 | // Copy data |
| 102 | Matrix::Invert(viewProjection, IVP); |
| 103 | Frustum.SetMatrix(viewProjection); |
| 104 | CullingFrustum = Frustum; |
| 105 | } |
| 106 | |
| 107 | void RenderView::SetUp(const Matrix& view, const Matrix& projection) |
| 108 | { |
no test coverage detected