| 196 | } |
| 197 | |
| 198 | float4x4 PlanarView::GetProjectionMatrix(bool includeOffset) const |
| 199 | { |
| 200 | EnsureCacheIsValid(); |
| 201 | return includeOffset ? m_ProjMatrix * m_PixelOffsetMatrix : m_ProjMatrix; |
| 202 | } |
| 203 | |
| 204 | float4x4 PlanarView::GetInverseProjectionMatrix(bool includeOffset) const |
| 205 | { |
no outgoing calls
no test coverage detected