r5sdk/r5dev/tier0/cpu.h
Kawe Mazidjatari 4bb3be2a8e Implement CPU utils and FastTimer
CPU system utilities and FastTimer (inline)
2022-03-21 23:13:03 +01:00

22 lines
537 B
C

//=============================================================================//
//
// 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(void);
const CPUInformation& GetCPUInformation(void);
#endif // CPU_H