mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-02-05 13:28:16 +00:00
st/oxr: Fix some type issues
This commit is contained in:
parent
d1ec5fa66a
commit
1d6207eee8
|
@ -148,7 +148,7 @@ oxr_space_ref_relation(struct oxr_logger *log,
|
|||
// math_relation_reset() sets to identity.
|
||||
|
||||
} else {
|
||||
out_relation->relation_flags = 0;
|
||||
out_relation->relation_flags = XRT_SPACE_RELATION_BITMASK_NONE;
|
||||
return XR_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -182,11 +182,11 @@ get_pure_space_relation(struct oxr_logger *log,
|
|||
// get_pure_space_relation(log, space, session->true_space,
|
||||
// time, &pose2);
|
||||
// math_pose_relate_2(&pose1, &pose2, out_pose);
|
||||
out_relation->relation_flags = 0;
|
||||
out_relation->relation_flags = XRT_SPACE_RELATION_BITMASK_NONE;
|
||||
return XR_SUCCESS;
|
||||
} else {
|
||||
// @todo deal with action space poses.
|
||||
out_relation->relation_flags = 0;
|
||||
out_relation->relation_flags = XRT_SPACE_RELATION_BITMASK_NONE;
|
||||
return XR_SUCCESS;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue