The open source OpenXR runtime

ipc: Add float to supported types in proto

+4 -2
+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 - "bool")) 59 + "bool", 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 - "bool" 16 + "bool", 17 + "float" 17 18 ] 18 19 }, 19 20 "aggregate": {