diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-09-22 16:47:59 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-09-22 16:51:51 +0200 |
commit | e36f509d2459ca74c0dc7fe2e8ea2275b88f0649 (patch) | |
tree | 2f62ae2004ef9fb2dcaceb7ded7bd404e41bbd92 /api | |
parent | 4063f006285db0473046bde645f236c814460eb0 (diff) |
api: expose raw data to protocols
Issue: #975
Diffstat (limited to 'api')
-rw-r--r-- | api/plugin-api.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/plugin-api.hpp b/api/plugin-api.hpp index 892f3500..e49530d2 100644 --- a/api/plugin-api.hpp +++ b/api/plugin-api.hpp @@ -160,7 +160,7 @@ struct OTR_API_EXPORT IProtocol : module_status_mixin // called 250 times a second with XYZ yaw pitch roll pose // try not to perform intense computation here. use a thread. - virtual void pose(const double* headpose) = 0; + virtual void pose(const double* pose, const double* raw) = 0; // return game name or placeholder text virtual QString game_name() = 0; }; |