| 202 | } |
| 203 | |
| 204 | float4x4 PlanarView::GetInverseProjectionMatrix(bool includeOffset) const |
| 205 | { |
| 206 | EnsureCacheIsValid(); |
| 207 | return includeOffset ? m_PixelOffsetMatrixInv * m_ProjMatrixInv : m_ProjMatrixInv; |
| 208 | } |
| 209 | |
| 210 | float4x4 PlanarView::GetViewProjectionMatrix(bool includeOffset) const |
| 211 | { |