[4.0] Render to Frame Buffer Object.
[platform/core/uifw/dali-adaptor.git] / adaptors / base / interfaces / performance-interface.h
index 3f41f97..0732d10 100644 (file)
@@ -57,7 +57,8 @@ public:
   };
 
   /**
-   * bitmask of time stamp output options
+   * bitmask of time stamp output options.
+   * E.g. DALI_PERFORMANCE_TIMESTAMP_OUTPUT = 1 dali-demo
    * Used for logging out time stamped markers for detailed analysis (see MarkerType, for the markers logged)
    * Typical output would look like:
    *   379.059025 (seconds), V_SYNC
@@ -72,10 +73,10 @@ public:
   enum TimeStampOutput
   {
     NO_TIME_STAMP_OUTPUT         = 0,
-    OUTPUT_DALI_LOG              = 1 << 0, ///< Bit 1 (1), log markers to DALi log
-    OUTPUT_KERNEL_TRACE          = 1 << 1, ///< Bit 2 (2), log makers to kernel trace
-    OUTPUT_SYSTEM_TRACE          = 1 << 2, ///< Bit 3 (4), log markers to system trace
-    OUTPUT_NETWORK               = 1 << 3, ///< Bit 4 (8), log markers to network client
+    OUTPUT_DALI_LOG              = 1 << 0, ///< Bit 0 (1), log markers to DALi log
+    OUTPUT_KERNEL_TRACE          = 1 << 1, ///< Bit 1 (2), log makers to kernel trace
+    OUTPUT_SYSTEM_TRACE          = 1 << 2, ///< Bit 2 (4), log markers to system trace
+    OUTPUT_NETWORK               = 1 << 3, ///< Bit 3 (8), log markers to network client
   };
 
   /**