X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fupdate%2Fgestures%2Fpan-gesture-profiling.h;h=1b01aa21af977f90a9f2ca3997c9f015418efae5;hb=baad1726f5f7f05d98da7ca591f24dbe3c49dab2;hp=2ded72a1677a26ff58ea6c6a53d80fcbddbfa95e;hpb=27619bbc4c1d443e89a6cdd116e544f6d9657fa4;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/internal/update/gestures/pan-gesture-profiling.h b/dali/internal/update/gestures/pan-gesture-profiling.h index 2ded72a..1b01aa2 100644 --- a/dali/internal/update/gestures/pan-gesture-profiling.h +++ b/dali/internal/update/gestures/pan-gesture-profiling.h @@ -1,8 +1,8 @@ -#ifndef __DALI_INTERNAL_PAN_GESTURE_PROFILING_H__ -#define __DALI_INTERNAL_PAN_GESTURE_PROFILING_H__ +#ifndef DALI_INTERNAL_PAN_GESTURE_PROFILING_H +#define DALI_INTERNAL_PAN_GESTURE_PROFILING_H /* - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2019 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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; @@ -59,4 +62,4 @@ struct PanGestureProfiling } // namespace Dali -#endif // __DALI_INTERNAL_PAN_GESTURE_PROFILING_H__ +#endif // DALI_INTERNAL_PAN_GESTURE_PROFILING_H