summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2008-12-26 11:00:41 +0000
committernakeee <nakeee@gmail.com>2008-12-26 11:00:41 +0000
commitbfa0ef86b173f01e3097c9d3143f60cb4e458dcd (patch)
tree0c1852edeb0d0b6d5feae41e80f4bc3f675baee4 /Source
parent18c4a6b33e2f85dd96f915ed49b49cde8c7aca29 (diff)
make gltest compile after 1677
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1680 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source')
-rw-r--r--Source/Plugins/Plugin_VideoOGL/Src/nmain.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Plugins/Plugin_VideoOGL/Src/nmain.cpp b/Source/Plugins/Plugin_VideoOGL/Src/nmain.cpp
index 4723b58e53..c266090563 100644
--- a/Source/Plugins/Plugin_VideoOGL/Src/nmain.cpp
+++ b/Source/Plugins/Plugin_VideoOGL/Src/nmain.cpp
@@ -159,8 +159,8 @@ void Video_Prepare(void)
VertexManager::Init();
Fifo_Init(); // must be done before OpcodeDecoder_Init()
OpcodeDecoder_Init();
- VertexShaderMngr::Init();
- PixelShaderMngr::Init();
+ VertexShaderManager::Init();
+ PixelShaderManager::Init();
GL_REPORT_ERRORD();
VertexLoaderManager::Init();
TextureConverter::Init();
@@ -170,8 +170,8 @@ void Video_Shutdown(void)
{
TextureConverter::Shutdown();
VertexLoaderManager::Shutdown();
- VertexShaderMngr::Shutdown();
- PixelShaderMngr::Shutdown();
+ VertexShaderManager::Shutdown();
+ PixelShaderManager::Shutdown();
Fifo_Shutdown();
VertexManager::Shutdown();
TextureMngr::Shutdown();