Enable thread name collection on old windows SDKs.

This commit is contained in:
Bartosz Taudul 2018-06-22 00:23:50 +02:00
parent ed40a3d989
commit 94c9c89ad0

View File

@ -2,7 +2,7 @@
#define __TRACYSYSTEM_HPP__
#ifdef TRACY_ENABLE
# if defined __ANDROID__ || defined __CYGWIN__ || defined __APPLE__ || defined _GNU_SOURCE
# if defined __ANDROID__ || defined __CYGWIN__ || defined __APPLE__ || defined _GNU_SOURCE || ( defined _WIN32 && !defined NTDDI_WIN10_RS2 )
# define TRACY_COLLECT_THREAD_NAMES
# endif
#endif