Searched refs:subCategory (Results 1 - 5 of 5) sorted by relevance
/foundation/graphic/graphic_3d/lume/LumeRender/src/perf/ |
H A D | cpu_perf_scope.h | 33 const BASE_NS::string_view category, const BASE_NS::string_view subCategory, const BASE_NS::string_view name); 46 const BASE_NS::string_view category, const BASE_NS::string_view subCategory, const BASE_NS::string_view name) in CpuPerfScopeInternal() 47 : subCategory_(subCategory), name_(name) in CpuPerfScopeInternal() 76 #define RENDER_CPU_PERF_BEGIN(timerName, category, subCategory, name) \ 77 RENDER_NS::CpuPerfScopeInternal timerName(category, subCategory, name); 79 #define RENDER_CPU_PERF_SCOPE(category, subCategory, name) \ 80 RENDER_NS::CpuPerfScopeInternal RENDER_CONCAT(cpuPerfScope_, __LINE__)(category, subCategory, name) 83 #define RENDER_CPU_PERF_BEGIN(timerName, category, subCategory, name) 85 #define RENDER_CPU_PERF_SCOPE(category, subCategory, name) 45 CpuPerfScopeInternal( const BASE_NS::string_view category, const BASE_NS::string_view subCategory, const BASE_NS::string_view name) CpuPerfScopeInternal() argument
|
/foundation/graphic/graphic_3d/lume/LumeEngine/api/core/perf/ |
H A D | cpu_perf_scope.h | 32 const BASE_NS::string_view category, const BASE_NS::string_view subCategory, const BASE_NS::string_view name); 44 const BASE_NS::string_view category, const BASE_NS::string_view subCategory, const BASE_NS::string_view name) in CpuPerfScope() 45 : subCategory_(subCategory), name_(name) in CpuPerfScope() 73 #define CORE_CPU_PERF_BEGIN(timerName, category, subCategory, name) \ 74 CORE_NS::CpuPerfScope timerName(category, subCategory, name); 76 #define CORE_CPU_PERF_SCOPE(category, subCategory, name) \ 77 CORE_NS::CpuPerfScope CORE_CONCAT(cpuPerfScope_, __LINE__)(category, subCategory, name) 80 #define CORE_CPU_PERF_BEGIN(timerName, category, subCategory, name) 82 #define CORE_CPU_PERF_SCOPE(category, subCategory, name) 43 CpuPerfScope( const BASE_NS::string_view category, const BASE_NS::string_view subCategory, const BASE_NS::string_view name) CpuPerfScope() argument
|
H A D | intf_performance_data_manager.h | 67 BASE_NS::fixed_string<TIMING_DATA_NAME_LENGTH> subCategory; member 94 * @param subCategory Name of the subcategory. 99 const BASE_NS::string_view subCategory, const BASE_NS::string_view name, const int64_t microSeconds) = 0; 105 * @param subCategory A sub category to be removed. 107 virtual void RemoveData(const BASE_NS::string_view subCategory) = 0;
|
/foundation/graphic/graphic_3d/lume/LumeEngine/src/perf/ |
H A D | performance_data_manager.cpp | 52 void UpdateTimingData(const string_view subCategory, const string_view name, const int64_t microSeconds, in UpdateTimingData() argument 55 auto iter = dataSet.find(subCategory); in UpdateTimingData() 94 auto& ref = dataSet[subCategory].data[name]; in UpdateTimingData() 113 pd.subCategory = typeRef.first; in GetTimingData() 147 void PerformanceDataManager::UpdateData([[maybe_unused]] const string_view subCategory, in UpdateData() argument 152 UpdateTimingData(subCategory, name, microSeconds, data_); in UpdateData() 174 void PerformanceDataManager::RemoveData([[maybe_unused]] const string_view subCategory) in RemoveData() argument 178 data_.erase(subCategory); in RemoveData()
|
H A D | performance_data_manager.h | 56 const BASE_NS::string_view subCategory, const BASE_NS::string_view name, const int64_t microSeconds) override; 62 void RemoveData(const BASE_NS::string_view subCategory) override;
|
Completed in 2 milliseconds