tangled
alpha
login
or
join now
matrixfurry.com
/
monado
0
fork
atom
The open source OpenXR runtime
0
fork
atom
overview
issues
pulls
pipelines
m/predict: Add C++ extern guards
Jakob Bornecrantz
4 years ago
cb7563ec
608bb987
+10
1 changed file
expand all
collapse all
unified
split
src
xrt
auxiliary
math
m_predict.h
+10
src/xrt/auxiliary/math/m_predict.h
···
12
12
#include "xrt/xrt_defines.h"
13
13
14
14
15
15
+
#ifdef __cplusplus
16
16
+
extern "C" {
17
17
+
#endif
18
18
+
19
19
+
15
20
/*!
16
21
* Using the given @p xrt_space_relation predicts a new @p xrt_space_relation
17
22
* @p delta_s into the future.
···
23
28
*/
24
29
void
25
30
m_predict_relation(const struct xrt_space_relation *rel, double delta_s, struct xrt_space_relation *out_rel);
31
31
+
32
32
+
33
33
+
#ifdef __cplusplus
34
34
+
}
35
35
+
#endif