Skip to content

Commit 59421bb

Browse files
author
mdcutone
committed
RF: Removed reference to ovrHMD_RiftS
1 parent b8722c8 commit 59421bb

File tree

4 files changed

+9
-17
lines changed

4 files changed

+9
-17
lines changed

psychxr/libovr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
# -------
2424
#
2525
# load exported data from the _libovr extension module into the namespace
26-
from ._libovr import *
26+
from ._libovr import *

psychxr/libovr/_libovr.pyx

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4508,17 +4508,9 @@ def getTrackingState(double absTime, bint latencyMarker=True):
45084508
values:
45094509
45104510
* ``STATUS_ORIENTATION_TRACKED``: Orientation is tracked/reported.
4511-
* ``STATUS_ORIENTATION_VALID``: Orientation is valid for application use. If
4512-
``STATUS_ORIENTATION_VALID`` is `True` but ``STATUS_ORIENTATION_TRACKED``
4513-
is `False`, the LibOVR runtime may be estimating orientation without
4514-
tracker data. If both values are `False`, the application should not rely
4515-
on the reported orientation data.
4511+
* ``STATUS_ORIENTATION_VALID``: Orientation is valid for application use.
45164512
* ``STATUS_POSITION_TRACKED``: Position is tracked/reported.
4517-
* ``STATUS_POSITION_VALID``: Position is valid for application use. If
4518-
``STATUS_POSITION_VALID`` is `True` but ``STATUS_POSITION_TRACKED``
4519-
is `False`, the LibOVR runtime may be estimating position without tracker
4520-
data. If both values are `False`, the application should not rely
4521-
on the reported position data.
4513+
* ``STATUS_POSITION_VALID``: Position is valid for application use.
45224514
45234515
Parameters
45244516
----------
@@ -4625,7 +4617,7 @@ def getDevicePoses(object deviceTypes, double absTime, bint latencyMarker=True):
46254617
-------
46264618
tuple
46274619
Return code (`int`) of the ``OVR::ovr_GetDevicePoses`` API call and list
4628-
of tracked device poses (`list` of `:py:class:LibOVRPoseState`). If a
4620+
of tracked device poses (`list` of :py:class:`LibOVRPoseState`). If a
46294621
device cannot be tracked, the return code will be
46304622
``ERROR_LOST_TRACKING``.
46314623

psychxr/libovr/libovr_capi.pxd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# libovr_capi.pxd
77
#
8-
# Copyright 2018 Matthew Cutone <cutonem(a)yorku.ca> and Laurie M. Wilcox
8+
# Copyright 2019 Matthew Cutone <cutonem(a)yorku.ca> and Laurie M. Wilcox
99
# <lmwilcox(a)yorku.ca>; The Centre For Vision Research, York University,
1010
# Toronto, Canada
1111
#
@@ -29,7 +29,7 @@
2929
#
3030
"""This file exposes Oculus Rift C API types and functions, allowing Cython
3131
extensions to access them. The declarations in the file are contemporaneous
32-
with version 1.32 (retrieved 02.01.2019) of the Oculus Rift PC SDK.
32+
with version 1.37 (retrieved 02.01.2019) of the Oculus Rift PC SDK.
3333
3434
The Oculus PC SDK is Copyright (c) Facebook Technologies, LLC and its
3535
affiliates. All rights reserved.
@@ -235,8 +235,8 @@ cdef extern from "OVR_CAPI.h":
235235
ovrHmd_ES06 = 11,
236236
ovrHmd_ES09 = 12,
237237
ovrHmd_ES11 = 13,
238-
ovrHmd_CV1 = 14,
239-
ovrHmd_RiftS = 16
238+
ovrHmd_CV1 = 14#,
239+
#ovrHmd_RiftS = 16
240240

241241
ctypedef enum ovrHmdCaps:
242242
ovrHmdCap_DebugDevice = 0x0010

psychxr/libovr/libovr_math.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# libovr_math.pxd
77
#
8-
# Copyright 2018 Matthew Cutone <cutonem(a)yorku.ca> and Laurie M. Wilcox
8+
# Copyright 2019 Matthew Cutone <cutonem(a)yorku.ca> and Laurie M. Wilcox
99
# <lmwilcox(a)yorku.ca>; The Centre For Vision Research, York University,
1010
# Toronto, Canada
1111
#

0 commit comments

Comments
 (0)