Plasma Engine  2.0
Loading...
Searching...
No Matches
ProfilingUtils.h
1#pragma once
2
3#include <Foundation/Basics.h>
4
5class PL_FOUNDATION_DLL plProfilingUtils
6{
7public:
9 static plResult SaveProfilingCapture(plStringView sCapturePath);
11 static plResult MergeProfilingCaptures(plStringView sCapturePath1, plStringView sCapturePath2, plStringView sMergedCapturePath);
12};
Definition ProfilingUtils.h:6
plStringView represent a read-only sub-string of a larger string, as it can store a dedicated string ...
Definition StringView.h:34
Default enum for returning failure or success, instead of using a bool.
Definition Types.h:54