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.
54 lines
1.2 KiB
54 lines
1.2 KiB
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//
|
||
|
//===========================================================================//
|
||
|
#ifndef CBENCHMARK_H
|
||
|
#define CBENCHMARK_H
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Forward declarations
|
||
|
//-----------------------------------------------------------------------------
|
||
|
class CCommand;
|
||
|
|
||
|
|
||
|
#define MAX_BUFFER_SIZE 2048
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Purpose: Holds benchmark data & state
|
||
|
//-----------------------------------------------------------------------------
|
||
|
class CBenchmarkResults
|
||
|
{
|
||
|
public:
|
||
|
CBenchmarkResults();
|
||
|
|
||
|
bool IsBenchmarkRunning();
|
||
|
void StartBenchmark( const CCommand &args );
|
||
|
void StopBenchmark();
|
||
|
void SetResultsFilename( const char *pFilename );
|
||
|
void Upload();
|
||
|
|
||
|
private:
|
||
|
bool m_bIsTestRunning;
|
||
|
char m_szFilename[256];
|
||
|
|
||
|
int m_flStartTime;
|
||
|
int m_iStartFrame;
|
||
|
};
|
||
|
|
||
|
inline CBenchmarkResults *GetBenchResultsMgr()
|
||
|
{
|
||
|
extern CBenchmarkResults g_BenchmarkResults;
|
||
|
return &g_BenchmarkResults;
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif // CBENCHMARK_H
|