aboutsummaryrefslogtreecommitdiffstats
path: root/support/magicleap/Servo2D/code/inc/Servo2D.h
diff options
context:
space:
mode:
Diffstat (limited to 'support/magicleap/Servo2D/code/inc/Servo2D.h')
-rw-r--r--support/magicleap/Servo2D/code/inc/Servo2D.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/magicleap/Servo2D/code/inc/Servo2D.h b/support/magicleap/Servo2D/code/inc/Servo2D.h
index 2f76c306e7c..490c6d60ece 100644
--- a/support/magicleap/Servo2D/code/inc/Servo2D.h
+++ b/support/magicleap/Servo2D/code/inc/Servo2D.h
@@ -11,7 +11,7 @@
#include <lumin/resource/PlanarResource.h>
#include <SceneDescriptor.h>
-typedef void* ServoInstance;
+typedef struct Opaque ServoInstance;
/**
* Servo2D Landscape Application
@@ -104,5 +104,5 @@ private:
lumin::Prism* prism_ = nullptr; // represents the bounded space where the App renders.
lumin::PlanarResource* plane_ = nullptr; // the plane we're rendering into
lumin::QuadNode* content_node_ = nullptr; // the node containing the plane
- ServoInstance servo_ = nullptr; // the servo instance we're embedding
+ ServoInstance* servo_ = nullptr; // the servo instance we're embedding
};