2ded72a1677a26ff58ea6c6a53d80fcbddbfa95e
[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) 2014 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 )
36     : time( time ), position( position )
37     {
38     }
39
40     unsigned int time;
41     Vector2 position;
42   };
43
44   typedef std::vector< PanGestureProfiling::Position > PanPositionContainer;
45
46   void PrintData() const;
47
48   void PrintData( const PanPositionContainer& dataContainer, const char * const prefix ) const;
49
50   void ClearData();
51
52   PanPositionContainer mRawData;
53   PanPositionContainer mLatestData;
54   PanPositionContainer mAveragedData;
55 };
56
57
58 } // namespace Internal
59
60 } // namespace Dali
61
62 #endif // __DALI_INTERNAL_PAN_GESTURE_PROFILING_H__