| 1835 | |
| 1836 | COVERAGE(HMM_Perspective_LH_NO, 1) |
| 1837 | static inline HMM_Mat4 HMM_Perspective_LH_NO(float FOV, float AspectRatio, float Near, float Far) |
| 1838 | { |
| 1839 | ASSERT_COVERED(HMM_Perspective_LH_NO); |
| 1840 | |
| 1841 | HMM_Mat4 Result = HMM_Perspective_RH_NO(FOV, AspectRatio, Near, Far); |
| 1842 | Result.Elements[2][2] = -Result.Elements[2][2]; |
| 1843 | Result.Elements[2][3] = -Result.Elements[2][3]; |
| 1844 | |
| 1845 | return Result; |
| 1846 | } |
| 1847 | |
| 1848 | COVERAGE(HMM_Perspective_LH_ZO, 1) |
| 1849 | static inline HMM_Mat4 HMM_Perspective_LH_ZO(float FOV, float AspectRatio, float Near, float Far) |
no test coverage detected