Some work on changing comments, log messages, and variable and function names to reflect that the plugins are not plugins anymore.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7170 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Glenn Rice
2011-02-14 02:18:03 +00:00
parent cd308e2358
commit 0ae8d33149
85 changed files with 12731 additions and 9818 deletions

View File

@ -17,7 +17,7 @@
// OpenGL Plugin Documentation
// OpenGL Backend Documentation
/*
1.1 Display settings
@ -173,8 +173,8 @@ void VideoBackend::Initialize()
if (!OpenGL_Create(640, 480))
return;
OSD::AddMessage("Dolphin OpenGL Video Plugin.", 5000);
s_PluginInitialized = true;
OSD::AddMessage("Dolphin OpenGL Video Backend.", 5000);
s_BackendInitialized = true;
}
// This is called after Initialize() from the Core
@ -213,16 +213,16 @@ void VideoBackend::Video_Prepare()
TextureConverter::Init();
DLCache::Init();
// Notify the core that the video plugin is ready
// Notify the core that the video backend is ready
Core::Callback_CoreMessage(WM_USER_CREATE);
INFO_LOG(VIDEO, "Video plugin initialized.");
INFO_LOG(VIDEO, "Video backend initialized.");
}
void VideoBackend::Shutdown()
{
s_PluginInitialized = false;
s_BackendInitialized = false;
s_efbAccessRequested = false;
s_FifoShuttingDown = false;