Files
Towards/external/tracy/profiler/src/winmainArchDiscovery.cpp
T

23 lines
258 B
C++
Raw Normal View History

2026-07-18 14:31:15 +02:00
#ifdef _WIN32
namespace tracy
{
bool DiscoveryAVX()
{
#ifdef __AVX__
return true;
#else
return false;
#endif
}
bool DiscoveryAVX2()
{
#ifdef __AVX2__
return true;
#else
return false;
#endif
}
}
#endif