(ulong ulOverlayHandle,IntPtr pvBuffer,uint unBufferSize,ref uint punWidth,ref uint punHeight)
| 3398 | return result; |
| 3399 | } |
| 3400 | public EVROverlayError GetOverlayImageData(ulong ulOverlayHandle,IntPtr pvBuffer,uint unBufferSize,ref uint punWidth,ref uint punHeight) |
| 3401 | { |
| 3402 | punWidth = 0; |
| 3403 | punHeight = 0; |
| 3404 | EVROverlayError result = FnTable.GetOverlayImageData(ulOverlayHandle,pvBuffer,unBufferSize,ref punWidth,ref punHeight); |
| 3405 | return result; |
| 3406 | } |
| 3407 | public string GetOverlayErrorNameFromEnum(EVROverlayError error) |
| 3408 | { |
| 3409 | IntPtr result = FnTable.GetOverlayErrorNameFromEnum(error); |
nothing calls this directly
no outgoing calls
no test coverage detected