Change Object profiler to use Environment Options, harmonize environment variable...
[platform/core/uifw/dali-adaptor.git] / adaptors / base / environment-variables.h
1 #ifndef __DALI_INTERNAL_ADAPTOR_ENVIRONMENT_VARIABLES_H__
2 #define __DALI_INTERNAL_ADAPTOR_ENVIRONMENT_VARIABLES_H__
3
4 /*
5  * Copyright (c) 2015 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 namespace Dali
22 {
23
24 namespace Internal
25 {
26
27 namespace Adaptor
28 {
29
30 /**
31  * What performance statistics are logged out to dlog
32  * see StatisticsLogOptions in performance-interface.h for values
33  */
34 #define DALI_ENV_LOG_PERFORMANCE_STATS "DALI_LOG_PERFORMANCE_STATS"
35
36 /**
37  * How frequent in seconds to log out performance statistics
38  */
39 #define DALI_ENV_LOG_PERFORMANCE_STATS_FREQUENCY "DALI_LOG_PERFORMANCE_STATS_FREQ"
40
41 /**
42  * Where timestamped events for update/render/event and custom events
43  * are output.
44  * see TimeStampOutput in performance-interface.h for values
45  */
46 #define DALI_ENV_PERFORMANCE_TIMESTAMP_OUTPUT "DALI_PERFORMANCE_TIMESTAMP_OUTPUT"
47
48 /**
49  * Allow control and monitoring of DALi via the network
50  */
51 #define DALI_ENV_NETWORK_CONTROL "DALI_NETWORK_CONTROL"
52
53 // environment variable for enabling/disabling fps tracking
54 #define DALI_ENV_FPS_TRACKING "DALI_FPS_TRACKING"
55
56 // environment variable for enabling/disabling fps tracking
57 #define DALI_ENV_UPDATE_STATUS_INTERVAL "DALI_UPDATE_STATUS_INTERVAL"
58
59 #define DALI_ENV_OBJECT_PROFILER_INTERVAL "DALI_OBJECT_PROFILER_INTERVAL"
60
61 #define DALI_ENV_LOG_PAN_GESTURE "DALI_LOG_PAN_GESTURE"
62
63 #define DALI_ENV_PAN_PREDICTION_MODE "DALI_PAN_PREDICTION_MODE"
64
65 #define DALI_ENV_PAN_PREDICTION_AMOUNT "DALI_PAN_PREDICTION_AMOUNT"
66
67 #define DALI_ENV_PAN_MAX_PREDICTION_AMOUNT "DALI_PAN_MAX_PREDICTION_AMOUNT"
68
69 #define DALI_ENV_PAN_MIN_PREDICTION_AMOUNT "DALI_PAN_MIN_PREDICTION_AMOUNT"
70
71 #define DALI_ENV_PAN_PREDICTION_AMOUNT_ADJUSTMENT "DALI_PAN_PREDICTION_AMOUNT_ADJUSTMENT"
72
73 #define DALI_ENV_PAN_SMOOTHING_MODE "DALI_PAN_SMOOTHING_MODE"
74
75 #define DALI_ENV_PAN_SMOOTHING_AMOUNT "DALI_PAN_SMOOTHING_AMOUNT"
76
77 #define DALI_ENV_PAN_MINIMUM_DISTANCE "DALI_PAN_MINIMUM_DISTANCE"
78
79 #define DALI_ENV_PAN_MINIMUM_EVENTS "DALI_PAN_MINIMUM_EVENTS"
80
81 #define DALI_GLES_CALL_TIME "DALI_GLES_CALL_TIME"
82
83 #define DALI_WINDOW_WIDTH "DALI_WINDOW_WIDTH"
84
85 #define DALI_WINDOW_HEIGHT "DALI_WINDOW_HEIGHT"
86
87 #define DALI_WINDOW_NAME "DALI_WINDOW_NAME"
88
89 #define DALI_WINDOW_CLASS_NAME "DALI_WINDOW_CLASS_NAME"
90
91 } // namespace Adaptor
92
93 } // namespace Internal
94
95 } // namespace Dali
96
97 #endif // __DALI_INTERNAL_ADAPTOR_ENVIRONMENT_VARIABLES_H__