(ref uint pnWidth,ref uint pnHeight)
| 2217 | FnTable = (IVRSystem)Marshal.PtrToStructure(pInterface, typeof(IVRSystem)); |
| 2218 | } |
| 2219 | public void GetRecommendedRenderTargetSize(ref uint pnWidth,ref uint pnHeight) |
| 2220 | { |
| 2221 | pnWidth = 0; |
| 2222 | pnHeight = 0; |
| 2223 | FnTable.GetRecommendedRenderTargetSize(ref pnWidth,ref pnHeight); |
| 2224 | } |
| 2225 | public HmdMatrix44_t GetProjectionMatrix(EVREye eEye,float fNearZ,float fFarZ) |
| 2226 | { |
| 2227 | HmdMatrix44_t result = FnTable.GetProjectionMatrix(eEye,fNearZ,fFarZ); |
nothing calls this directly
no outgoing calls
no test coverage detected