---------------------------- Camera::SetFieldOfView Contributes to perspective projection
| 52 | // Contributes to perspective projection |
| 53 | // |
| 54 | void Camera::SetFieldOfView(float const fov, bool const deferRecalculation) |
| 55 | { |
| 56 | m_FieldOfView = fov; |
| 57 | |
| 58 | if (m_IsPerspective && !deferRecalculation) |
| 59 | { |
| 60 | RecalculateProjection(); |
| 61 | RecalculateDerived(); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | //---------------------------- |
| 66 | // Camera::SetSize |
nothing calls this directly
no outgoing calls
no test coverage detected