summaryrefslogtreecommitdiffhomepage
path: root/api
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2019-09-22 16:47:59 +0200
committerStanislaw Halik <sthalik@misaki.pl>2019-09-22 16:51:51 +0200
commite36f509d2459ca74c0dc7fe2e8ea2275b88f0649 (patch)
tree2f62ae2004ef9fb2dcaceb7ded7bd404e41bbd92 /api
parent4063f006285db0473046bde645f236c814460eb0 (diff)
api: expose raw data to protocols
Issue: #975
Diffstat (limited to 'api')
-rw-r--r--api/plugin-api.hpp2
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;
};