| 976 | } |
| 977 | |
| 978 | void Tr2Renderer::PopProjection() |
| 979 | { |
| 980 | CCP_ASSERT( !s_projectionStack.empty() ); |
| 981 | |
| 982 | auto transforms = s_projectionStack.front(); |
| 983 | s_projectionTransform = transforms.first; |
| 984 | s_viewport2projectionAdjustment = transforms.second; |
| 985 | s_projectionStack.pop_front(); |
| 986 | UpdateProjectionParameters( s_projectionTransform ); |
| 987 | SetProjectionDerivedValues(); |
| 988 | } |
| 989 | |
| 990 | void Tr2Renderer::PushViewTransform() |
| 991 | { |
nothing calls this directly
no test coverage detected