mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
15 lines
141 B
C++
15 lines
141 B
C++
#ifndef __TRACYCONFIG_HPP__
|
|
#define __TRACYCONFIG_HPP__
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
struct Config
|
|
{
|
|
bool threadedRendering = true;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|