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

Method GetOverlayTextureSize

headers/openvr_api.cs:3743–3749  ·  view source on GitHub ↗
(ulong ulOverlayHandle,ref uint pWidth,ref uint pHeight)

Source from the content-addressed store, hash-verified

3741 return result;
3742 }
3743 public EVROverlayError GetOverlayTextureSize(ulong ulOverlayHandle,ref uint pWidth,ref uint pHeight)
3744 {
3745 pWidth = 0;
3746 pHeight = 0;
3747 EVROverlayError result = FnTable.GetOverlayTextureSize(ulOverlayHandle,ref pWidth,ref pHeight);
3748 return result;
3749 }
3750 public EVROverlayError CreateDashboardOverlay(string pchOverlayKey,string pchOverlayFriendlyName,ref ulong pMainHandle,ref ulong pThumbnailHandle)
3751 {
3752 IntPtr pchOverlayKeyUtf8 = Utils.ToUtf8(pchOverlayKey);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected