sculpto
profiller_window.h
Go to the documentation of this file.
1/*!****************************************************************//*!*
2 * \file profiller_window.h
3 * \brief Application profiller GUI window class definition module.
4 *
5 * \author Sabitov Kirill
6 * \date 09 July 2022
7 *********************************************************************/
8
9#pragma once
10
11namespace scl
12{
15 {
16 private:
17 std::vector<float> FPSList {};
18 float FPSPlotUpdateDelay {};
19 bool CollectProfilingData;
20
21 public:
23 profiller_window() = default;
24
25 /*!*
26 * Draw profiller GUI window function.
27 *
28 * \param None.
29 * \return None.
30 */
31 void Draw();
32 };
33}
profiller_window()=default
Definition: base.h:33