File: PsychOculusVR1.h

package info (click to toggle)
psychtoolbox-3 3.0.19.14.dfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 86,796 kB
  • sloc: ansic: 176,245; cpp: 20,103; objc: 5,393; sh: 2,753; python: 1,397; php: 384; makefile: 193; java: 113
file content (94 lines) | stat: -rw-r--r-- 3,342 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
 * PsychToolbox/Source/Common/PsychOculusVRCore1/PsychOculusVR1.h
 *
 * PROJECTS: PsychOculusVRCore1 only.
 *
 * AUTHORS:
 *
 * mario.kleiner.de@gmail.com   mk
 *
 * PLATFORMS:   All.
 *
 * DESCRIPTION:
 *
 * A Psychtoolbox driver for the Oculus VR virtual reality
 * head sets, using the OculusVR 1.0 SDK and runtime.
 *
 * Copyright (c) 2018 Mario Kleiner. Licensed under the MIT license:
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to permit
 * persons to whom the Software is furnished to do so, subject to the
 * following conditions:
 *
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
 * NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
 * USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

// begin include once
#ifndef PSYCH_IS_INCLUDED_PsychOculusVR1
#define PSYCH_IS_INCLUDED_PsychOculusVR1

//project includes
#include "Psych.h"

#ifdef  __cplusplus
extern "C" {
#endif

//function prototypes
PsychError MODULEVersion(void);
void InitializeSynopsis(void);
PsychError PsychOculusVR1DisplaySynopsis(void);

void PsychOculusVR1Init(void);
PsychError PsychOculusVR1ShutDown(void);

PsychError PSYCHOCULUSVR1Verbosity(void);
PsychError PSYCHOCULUSVR1Open(void);
PsychError PSYCHOCULUSVR1Close(void);
PsychError PSYCHOCULUSVR1SetHUDState(void);
PsychError PSYCHOCULUSVR1Start(void);
PsychError PSYCHOCULUSVR1Stop(void);
PsychError PSYCHOCULUSVR1GetCount(void);
PsychError PSYCHOCULUSVR1GetTrackingState(void);
PsychError PSYCHOCULUSVR1GetInputState(void);
PsychError PSYCHOCULUSVR1GetFovTextureSize(void);
PsychError PSYCHOCULUSVR1CreateRenderTextureChain(void);
PsychError PSYCHOCULUSVR1GetNextTextureHandle(void);
PsychError PSYCHOCULUSVR1CreateMirrorTexture(void);
PsychError PSYCHOCULUSVR1GetUndistortionParameters(void);
PsychError PSYCHOCULUSVR1GetStaticRenderParameters(void);
PsychError PSYCHOCULUSVR1GetTrackersState(void);
PsychError PSYCHOCULUSVR1StartRender(void);
PsychError PSYCHOCULUSVR1EndFrameRender(void);
PsychError PSYCHOCULUSVR1PresentFrame(void);
PsychError PSYCHOCULUSVR1GetEyePose(void);
PsychError PSYCHOCULUSVR1VRAreaBoundary(void);
PsychError PSYCHOCULUSVR1TestVRBoundary(void);
PsychError PSYCHOCULUSVR1TestVRBoundaryPoint(void);
PsychError PSYCHOCULUSVR1RecenterTrackingOrigin(void);
PsychError PSYCHOCULUSVR1TrackingOriginType(void);
PsychError PSYCHOCULUSVR1GetPerformanceStats(void);
PsychError PSYCHOCULUSVR1HapticPulse(void);
PsychError PSYCHOCULUSVR1FloatsProperty(void);
PsychError PSYCHOCULUSVR1FloatProperty(void);
PsychError PSYCHOCULUSVR1StringProperty(void);

#ifdef  __cplusplus
}
#endif

//end include once
#endif