Integrating latest 47acbe8

This commit is contained in:
alexpete
2021-03-25 13:57:57 -07:00
parent 448c549698
commit 75dc720198
10312 changed files with 2711566 additions and 671451 deletions
-12
View File
@@ -258,10 +258,6 @@ struct SSystemCVars
int sys_vtune;
float sys_update_profile_time;
int sys_limit_phys_thread_count;
int sys_usePlatformSavingAPI;
#ifndef _RELEASE
int sys_usePlatformSavingAPIEncryption;
#endif
int sys_MaxFPS;
float sys_maxTimeStepForMovieSystem;
int sys_force_installtohdd_mode;
@@ -476,7 +472,6 @@ public:
IRenderer* GetIRenderer(){ return m_env.pRenderer; }
ITimer* GetITimer(){ return m_env.pTimer; }
INetwork* GetINetwork(){ return m_env.pNetwork; }
AZ::IO::IArchive* GetIPak() { return m_env.pCryPak; };
IConsole* GetIConsole() { return m_env.pConsole; };
IRemoteConsole* GetIRemoteConsole();
@@ -506,7 +501,6 @@ public:
ILZ4Decompressor* GetLZ4Decompressor() { return m_pILZ4Decompressor; }
IZStdDecompressor* GetZStdDecompressor() { return m_pIZStdDecompressor; }
WIN_HWND GetHWND(){ return m_hWnd; }
ICrypto* GetCrypto() { return m_crypto; }
//////////////////////////////////////////////////////////////////////////
// retrieves the perlin noise singleton instance
CPNoise3* GetNoiseGen();
@@ -687,9 +681,6 @@ private:
//! @name Initialization routines
//@{
bool InitNetwork(const SSystemInitParams& startupParams);
bool InitConsole();
bool InitRenderer(WIN_HINSTANCE hinst, WIN_HWND hwnd, const SSystemInitParams& initParams);
@@ -904,9 +895,6 @@ private: // ------------------------------------------------------
//! System access to zstd decompressor
IZStdDecompressor* m_pIZStdDecompressor;
//! System for cryptography
ICrypto* m_crypto;
// XML Utils interface.
class CXmlUtils* m_pXMLUtils;