1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 04:23:51 +00:00

Add global configuration struct.

This commit is contained in:
Bartosz Taudul 2023-05-01 14:40:31 +02:00
parent cbabb5aa22
commit 1dd0341cff
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

14
server/TracyConfig.hpp Normal file
View File

@ -0,0 +1,14 @@
#ifndef __TRACYCONFIG_HPP__
#define __TRACYCONFIG_HPP__
namespace tracy
{
struct Config
{
bool threadedRendering = true;
};
}
#endif