Photon Common Library 2.0.0-beta
A physically based renderer.
Loading...
Searching...
No Matches
lib_tracy.h
Go to the documentation of this file.
1#pragma once
2
3#if PH_THIRD_PARTY_HAS_TRACY
4
5#ifndef WIN32_LEAN_AND_MEAN
6#define WIN32_LEAN_AND_MEAN
7#endif
8
9// This should be done by the build script.
10#ifndef TRACY_ENABLE
11#error "Tracy profiler is not enabled. Please make sure `TRACY_ENABLE` is defined globally by the build script."
12#endif
13
14#include <tracy/Tracy.hpp>
15
16#endif