r5sdk/r5dev/tier0/cpu.h
Kawe Mazidjatari 1e7b746356 More detailed system stats
Fixed physical core count always returning logical core count (this engine does not run on the AMD Phenom processor).
2022-04-18 16:45:26 +02:00

22 lines
552 B
C

//===== Copyright (c) 1996-2005, Valve Corporation, All rights reserved. ======//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef CPU_H
#define CPU_H
bool CheckSSE3Technology(void);
bool CheckSSSE3Technology(void);
bool CheckSSE41Technology(void);
bool CheckSSE42Technology(void);
bool CheckSSE4aTechnology(void);
const char* GetProcessorVendorId(void);
const char* GetProcessorBrand(bool bRemovePadding);
const CPUInformation& GetCPUInformation(void);
#endif // CPU_H