1b01aa21af977f90a9f2ca3997c9f015418efae5
[platform/core/uifw/dali-core.git] / dali / internal / update / gestures / pan-gesture-profiling.h
1 #ifndef DALI_INTERNAL_PAN_GESTURE_PROFILING_H
2 #define DALI_INTERNAL_PAN_GESTURE_PROFILING_H
3
4 /*
5  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/public-api/math/vector2.h>
23 #include <dali/public-api/common/vector-wrapper.h>
24
25 namespace Dali
26 {
27
28 namespace Internal
29 {
30
31 struct PanGestureProfiling
32 {
33   struct Position
34   {
35     Position( unsigned int time, Vector2 position, Vector2 displacement, Vector2 velocity, int state )
36     : time( time ), position( position ), displacement( displacement ), velocity( velocity ), state( state )
37     {
38     }
39
40     unsigned int time;
41     Vector2 position;
42     Vector2 displacement;
43     Vector2 velocity;
44     int state;
45   };
46
47   typedef std::vector< PanGestureProfiling::Position > PanPositionContainer;
48
49   void PrintData() const;
50
51   void PrintData( const PanPositionContainer& dataContainer, const char * const prefix ) const;
52
53   void ClearData();
54
55   PanPositionContainer mRawData;
56   PanPositionContainer mLatestData;
57   PanPositionContainer mAveragedData;
58 };
59
60
61 } // namespace Internal
62
63 } // namespace Dali
64
65 #endif // DALI_INTERNAL_PAN_GESTURE_PROFILING_H