File: PsychOpenXRCore.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 (90 lines) | stat: -rw-r--r-- 3,294 bytes parent folder | download
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
/*
 * Psychtoolbox-3/PsychSourceGL/Source/Common/PsychOpenXRCore/PsychOpenXRCore.h
 *
 * PROJECTS: PsychOpenXRCore only.
 *
 * AUTHORS:
 *
 * mario.kleiner.de@gmail.com   mk
 *
 * PLATFORMS:   All which are supported by an OpenXR Runtime.
 *
 * DESCRIPTION:
 *
 * A Psychtoolbox driver for virtual reality (VR), augmented reality (AR) and
 * mixed reality (MR) devices, also known as XR devices, which are supported by
 * an OpenXR-1.0 (or later versions) compliant OpenXR runtime.
 * The runtime must support OpenGL as rendering backend for XR content.
 *
 * The driver was initially derived from PsychOculusVRCore1.
 * Copyright (c) 2022-2023 Mario Kleiner. Licensed to you 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_PsychOpenXRCore
#define PSYCH_IS_INCLUDED_PsychOpenXRCore

// Project includes:
#include "Psych.h"

#ifdef __cplusplus
extern "C" {
#endif

// Function prototypes:
PsychError MODULEVersion(void);
void InitializeSynopsis(void);
PsychError PsychOpenXRCoreDisplaySynopsis(void);
void PsychOpenXRCoreInit(void);
PsychError PsychOpenXRCoreShutDown(void);

PsychError PSYCHOPENXRVerbosity(void);
PsychError PSYCHOPENXROpen(void);
PsychError PSYCHOPENXRClose(void);
PsychError PSYCHOPENXRCreateAndStartSession(void);
PsychError PSYCHOPENXRStart(void);
PsychError PSYCHOPENXRStop(void);
PsychError PSYCHOPENXRGetCount(void);
PsychError PSYCHOPENXRGetTrackingState(void);
PsychError PSYCHOPENXRControllers(void);
PsychError PSYCHOPENXRGetInputState(void);
PsychError PSYCHOPENXRGetFovTextureSize(void);
PsychError PSYCHOPENXRCreateRenderTextureChain(void);
PsychError PSYCHOPENXRGetNextTextureHandle(void);
PsychError PSYCHOPENXRGetStaticRenderParameters(void);
PsychError PSYCHOPENXRGetTrackersState(void);
PsychError PSYCHOPENXRPresentFrame(void);
PsychError PSYCHOPENXRReferenceSpaceType(void);
PsychError PSYCHOPENXRHapticPulse(void);
PsychError PSYCHOPENXRGetEyePose(void);
PsychError PSYCHOPENXRViewType(void);
PsychError PSYCHOPENXRView2DParameters(void);
PsychError PSYCHOPENXRNeedLocateForProjectionLayers(void);
PsychError PSYCHOPENXRPresenterThreadEnable(void);
PsychError PSYCHOPENXRTimingSupport(void);

#ifdef __cplusplus
}
#endif

// end include once
#endif