(ref int pnX,ref int pnY,ref uint pnWidth,ref uint pnHeight)
| 2589 | FnTable = (IVRExtendedDisplay)Marshal.PtrToStructure(pInterface, typeof(IVRExtendedDisplay)); |
| 2590 | } |
| 2591 | public void GetWindowBounds(ref int pnX,ref int pnY,ref uint pnWidth,ref uint pnHeight) |
| 2592 | { |
| 2593 | pnX = 0; |
| 2594 | pnY = 0; |
| 2595 | pnWidth = 0; |
| 2596 | pnHeight = 0; |
| 2597 | FnTable.GetWindowBounds(ref pnX,ref pnY,ref pnWidth,ref pnHeight); |
| 2598 | } |
| 2599 | public void GetEyeOutputViewport(EVREye eEye,ref uint pnX,ref uint pnY,ref uint pnWidth,ref uint pnHeight) |
| 2600 | { |
| 2601 | pnX = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected