Exemplo n.º 1
0
Arquivo: ovr.go Projeto: postfix/ovr
func (hmd *Hmd) GetEnabledCaps() uint {
	return uint(C.ovrHmd_GetEnabledCaps(hmd.hmdRef))
}
Exemplo n.º 2
0
Arquivo: ovr.go Projeto: 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()))
}