Add **GPU profiling support to Tracy integration**
This commit is contained in:
@@ -16,6 +16,18 @@ constexpr char DirectorySeparatorChar = '\\';
|
||||
constexpr char AltDirectorySeparatorChar = '/';
|
||||
constexpr char VolumeSeparatorChar = ':';
|
||||
|
||||
int32 StringUtils::Copy(char* dst, const Char* src, int32 count)
|
||||
{
|
||||
int32 i = 0;
|
||||
while (i < count && src[i])
|
||||
{
|
||||
dst[i] = (char)src[i];
|
||||
i++;
|
||||
}
|
||||
dst[i] = 0;
|
||||
return i;
|
||||
}
|
||||
|
||||
const Char* StringUtils::FindIgnoreCase(const Char* str, const Char* toFind)
|
||||
{
|
||||
if (toFind == nullptr || str == nullptr)
|
||||
|
||||
Reference in New Issue
Block a user