Skip to content

Commit

Permalink
nvtx: Implement pointlights
Browse files Browse the repository at this point in the history
  • Loading branch information
vlj committed Jan 6, 2024
1 parent b9f9a8b commit be96c72
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/profiling.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,14 @@
#include <string>

#ifdef WZ_PROFILING_NVTX
#pragma warning( push )
#pragma warning( disable : 4191 )
#if defined( _MSC_VER )
# pragma warning( push )
# pragma warning( disable : 4191 )
#endif
#include <nvtx3/nvToolsExt.h>
#pragma warning( pop )
#if defined( _MSC_VER )
# pragma warning( pop )
#endif
#endif

#ifdef WZ_PROFILING_VTUNE
Expand Down

0 comments on commit be96c72

Please sign in to comment.