(ulong ulOverlayHandle,ref uint pWidth,ref uint pHeight)
| 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); |
nothing calls this directly
no outgoing calls
no test coverage detected