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

Method GetOverlayColor

headers/openvr_api.cs:3444–3451  ·  view source on GitHub ↗
(ulong ulOverlayHandle,ref float pfRed,ref float pfGreen,ref float pfBlue)

Source from the content-addressed store, hash-verified

3442 return result;
3443 }
3444 public EVROverlayError GetOverlayColor(ulong ulOverlayHandle,ref float pfRed,ref float pfGreen,ref float pfBlue)
3445 {
3446 pfRed = 0;
3447 pfGreen = 0;
3448 pfBlue = 0;
3449 EVROverlayError result = FnTable.GetOverlayColor(ulOverlayHandle,ref pfRed,ref pfGreen,ref pfBlue);
3450 return result;
3451 }
3452 public EVROverlayError SetOverlayAlpha(ulong ulOverlayHandle,float fAlpha)
3453 {
3454 EVROverlayError result = FnTable.SetOverlayAlpha(ulOverlayHandle,fAlpha);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected