tangled
alpha
login
or
join now
matrixfurry.com
/
monado
0
fork
atom
The open source OpenXR runtime
0
fork
atom
overview
issues
pulls
pipelines
ipc: Add float to supported types in proto
Christoph Haag
4 years ago
1eeb870a
4f1dfa7a
+4
-2
2 changed files
expand all
collapse all
unified
split
src
xrt
ipc
shared
ipcproto
common.py
proto.schema.json
+2
-1
src/xrt/ipc/shared/ipcproto/common.py
···
56
56
SCALAR_TYPES = set(("uint32_t",
57
57
"int64_t",
58
58
"uint64_t",
59
59
-
"bool"))
59
59
+
"bool",
60
60
+
"float"))
60
61
AGGREGATE_RE = re.compile(r"((const )?struct|union) (xrt|ipc)_[a-z_]+")
61
62
ENUM_RE = re.compile(r"enum xrt_[a-z_]+")
62
63
+2
-1
src/xrt/ipc/shared/proto.schema.json
···
13
13
"uint32_t",
14
14
"int64_t",
15
15
"uint64_t",
16
16
-
"bool"
16
16
+
"bool",
17
17
+
"float"
17
18
]
18
19
},
19
20
"aggregate": {