Home
last modified time | relevance | path

Searched refs:DvrPoseClient (Results 1 – 6 of 6) sorted by relevance

/frameworks/native/libs/vr/libvrsensor/include/dvr/
Dpose_client.h23 typedef struct DvrPoseClient DvrPoseClient; typedef
73 DvrPoseClient* dvrPoseClientCreate();
78 void dvrPoseClientDestroy(DvrPoseClient* client);
87 int dvrPoseClientGet(DvrPoseClient* client, uint32_t vsync_count,
91 uint32_t dvrPoseClientGetVsyncCount(DvrPoseClient* client);
101 int dvrPoseClientGetController(DvrPoseClient* client, int32_t controller_id,
109 int dvrPoseClientLogController(DvrPoseClient* client, bool enable);
117 int dvrPoseClientPoll(DvrPoseClient* client, DvrPose* state);
128 int dvrPoseClientFreeze(DvrPoseClient* client, const DvrPose* frozen_state);
134 int dvrPoseClientModeSet(DvrPoseClient* client, DvrPoseMode mode);
[all …]
/frameworks/native/libs/vr/libvrsensor/
Dpose_client.cpp38 static PoseClient* FromC(DvrPoseClient* client) { in FromC()
299 int dvrPoseClientGetDataReaderHandle(DvrPoseClient* client, uint64_t type, in dvrPoseClientGetDataReaderHandle()
311 DvrPoseClient* dvrPoseClientCreate() { in dvrPoseClientCreate()
313 return reinterpret_cast<DvrPoseClient*>(client); in dvrPoseClientCreate()
316 void dvrPoseClientDestroy(DvrPoseClient* client) { in dvrPoseClientDestroy()
320 int dvrPoseClientGet(DvrPoseClient* client, uint32_t vsync_count, in dvrPoseClientGet()
325 uint32_t dvrPoseClientGetVsyncCount(DvrPoseClient* client) { in dvrPoseClientGetVsyncCount()
329 int dvrPoseClientGetController(DvrPoseClient* client, int32_t controller_id, in dvrPoseClientGetController()
335 int dvrPoseClientLogController(DvrPoseClient* client, bool enable) { in dvrPoseClientLogController()
339 int dvrPoseClientPoll(DvrPoseClient* client, DvrPose* state) { in dvrPoseClientPoll()
[all …]
/frameworks/native/libs/vr/libvrsensor/include/private/dvr/
Dpose_client_internal.h8 typedef struct DvrPoseClient DvrPoseClient; typedef
13 int dvrPoseClientGetDataReaderHandle(DvrPoseClient *client, uint64_t data_type,
/frameworks/native/libs/vr/libdvr/include/dvr/
Ddvr_pose.h18 typedef struct DvrPoseClient DvrPoseClient; typedef
147 int dvrPoseClientGetDataReader(DvrPoseClient* client, uint64_t data_type,
Ddvr_api.h32 typedef struct DvrPoseClient DvrPoseClient; typedef
269 typedef DvrPoseClient* (*DvrPoseClientCreatePtr)();
270 typedef void (*DvrPoseClientDestroyPtr)(DvrPoseClient* client);
271 typedef int (*DvrPoseClientGetPtr)(DvrPoseClient* client, uint32_t vsync_count,
273 typedef uint32_t (*DvrPoseClientGetVsyncCountPtr)(DvrPoseClient* client);
274 typedef int (*DvrPoseClientGetControllerPtr)(DvrPoseClient* client,
278 typedef int (*DvrPoseClientSensorsEnablePtr)(DvrPoseClient* client,
280 typedef int (*DvrPoseClientDataCapturePtr)(DvrPoseClient* client,
282 typedef int (*DvrPoseClientDataReaderDestroyPtr)(DvrPoseClient* client,
286 typedef int (*DvrPoseClientGetDataReaderPtr)(DvrPoseClient* client,
/frameworks/native/libs/vr/libdvr/
Ddvr_pose.cpp12 int dvrPoseClientGetDataReader(DvrPoseClient* client, uint64_t data_type, in dvrPoseClientGetDataReader()