make gltest compile after 1677

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1680 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-12-26 11:00:41 +00:00
parent 18c4a6b33e
commit bfa0ef86b1

View file

@ -159,8 +159,8 @@ void Video_Prepare(void)
VertexManager::Init(); VertexManager::Init();
Fifo_Init(); // must be done before OpcodeDecoder_Init() Fifo_Init(); // must be done before OpcodeDecoder_Init()
OpcodeDecoder_Init(); OpcodeDecoder_Init();
VertexShaderMngr::Init(); VertexShaderManager::Init();
PixelShaderMngr::Init(); PixelShaderManager::Init();
GL_REPORT_ERRORD(); GL_REPORT_ERRORD();
VertexLoaderManager::Init(); VertexLoaderManager::Init();
TextureConverter::Init(); TextureConverter::Init();
@ -170,8 +170,8 @@ void Video_Shutdown(void)
{ {
TextureConverter::Shutdown(); TextureConverter::Shutdown();
VertexLoaderManager::Shutdown(); VertexLoaderManager::Shutdown();
VertexShaderMngr::Shutdown(); VertexShaderManager::Shutdown();
PixelShaderMngr::Shutdown(); PixelShaderManager::Shutdown();
Fifo_Shutdown(); Fifo_Shutdown();
VertexManager::Shutdown(); VertexManager::Shutdown();
TextureMngr::Shutdown(); TextureMngr::Shutdown();