Set framebuffer layout from EmuWindow.

This commit is contained in:
bunnei
2015-03-07 17:21:19 -05:00
parent 8e4e28aacb
commit 9960c49c21
7 changed files with 88 additions and 60 deletions

View File

@ -18,7 +18,6 @@ namespace VideoCore {
EmuWindow* g_emu_window = nullptr; ///< Frontend emulator window
RendererBase* g_renderer = nullptr; ///< Renderer plugin
int g_current_frame = 0;
/// Initialize the video core
void Init(EmuWindow* emu_window) {
@ -27,8 +26,6 @@ void Init(EmuWindow* emu_window) {
g_renderer->SetWindow(g_emu_window);
g_renderer->Init();
g_current_frame = 0;
LOG_DEBUG(Render, "initialized OK");
}