[3.0] Remove/move experimental features
[platform/core/uifw/dali-core.git] / dali / internal / update / gestures / pan-gesture-profiling.h
index 2ded72a..0ab89b1 100644 (file)
@@ -32,13 +32,16 @@ struct PanGestureProfiling
 {
   struct Position
   {
-    Position( unsigned int time, Vector2 position )
-    : time( time ), position( position )
+    Position( unsigned int time, Vector2 position, Vector2 displacement, Vector2 velocity, int state )
+    : time( time ), position( position ), displacement( displacement ), velocity( velocity ), state( state )
     {
     }
 
     unsigned int time;
     Vector2 position;
+    Vector2 displacement;
+    Vector2 velocity;
+    int state;
   };
 
   typedef std::vector< PanGestureProfiling::Position > PanPositionContainer;