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

Method GetOverlayImageData

headers/openvr_api.cs:3400–3406  ·  view source on GitHub ↗
(ulong ulOverlayHandle,IntPtr pvBuffer,uint unBufferSize,ref uint punWidth,ref uint punHeight)

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected