Example #1
0
File: ovr.go Project: postfix/ovr
func (hmd *Hmd) GetEnabledCaps() uint {
	return uint(C.ovrHmd_GetEnabledCaps(hmd.hmdRef))
}
Example #2
0
File: ovr.go Project: krux02/libovr
// Returns capability bits that are enabled at this time; described by ovrHmdCaps.
// Note that this value is different font ovrHmdDesc::HmdCaps, which describes what
// capabilities are available.
func (this *Hmd) GetEnabledCaps() HmdCaps {
	return HmdCaps(C.ovrHmd_GetEnabledCaps(this.cptr()))
}