MCPcopy Create free account
hub / github.com/ValveSoftware/openvr / GetWindowBounds

Method GetWindowBounds

headers/openvr_api.cs:2591–2598  ·  view source on GitHub ↗
(ref int pnX,ref int pnY,ref uint pnWidth,ref uint pnHeight)

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected