mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-06 07:06:10 +00:00
ipc: Add float to supported types in proto
This commit is contained in:
parent
4f1dfa7ae4
commit
1eeb870a2d
|
@ -56,7 +56,8 @@ class Arg:
|
||||||
SCALAR_TYPES = set(("uint32_t",
|
SCALAR_TYPES = set(("uint32_t",
|
||||||
"int64_t",
|
"int64_t",
|
||||||
"uint64_t",
|
"uint64_t",
|
||||||
"bool"))
|
"bool",
|
||||||
|
"float"))
|
||||||
AGGREGATE_RE = re.compile(r"((const )?struct|union) (xrt|ipc)_[a-z_]+")
|
AGGREGATE_RE = re.compile(r"((const )?struct|union) (xrt|ipc)_[a-z_]+")
|
||||||
ENUM_RE = re.compile(r"enum xrt_[a-z_]+")
|
ENUM_RE = re.compile(r"enum xrt_[a-z_]+")
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@
|
||||||
"uint32_t",
|
"uint32_t",
|
||||||
"int64_t",
|
"int64_t",
|
||||||
"uint64_t",
|
"uint64_t",
|
||||||
"bool"
|
"bool",
|
||||||
|
"float"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"aggregate": {
|
"aggregate": {
|
||||||
|
|
Loading…
Reference in a new issue