Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
527 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================//
  6. #ifndef PERFSTATS_H
  7. #define PERFSTATS_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. #include "studio.h"
  12. #include "optimize.h"
  13. enum
  14. {
  15. SPEWPERFSTATS_SHOWSTUDIORENDERWARNINGS = 1,
  16. SPEWPERFSTATS_SHOWPERF = 2,
  17. SPEWPERFSTATS_SPREADSHEET = 4,
  18. };
  19. void SpewPerfStats( studiohdr_t *pStudioHdr, const char *pFilename, unsigned int flags );
  20. #endif // PERFSTATS_H