dolphin/Source/Core/DolphinWX/GLInterface/AGL.cpp

125 lines
3 KiB
C++
Raw Normal View History

2012-12-17 22:01:52 +01:00
// Copyright (C) 2003 Dolphin Project.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 2.0.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License 2.0 for more details.
// A copy of the GPL 2.0 should have been included with the program.
// If not, see http://www.gnu.org/licenses/
// Official SVN repository and contact information can be found at
// http://code.google.com/p/dolphin-emu/
#include "VideoConfig.h"
#include "Host.h"
#include "RenderBase.h"
2013-01-21 22:48:02 +01:00
#include "ConfigManager.h"
2012-12-17 22:01:52 +01:00
#include <wx/panel.h>
2012-12-17 22:01:52 +01:00
#include "VertexShaderManager.h"
#include "GLInterface.h"
2012-12-17 22:01:52 +01:00
#include "AGL.h"
2012-12-26 07:34:09 +01:00
void cInterfaceAGL::Swap()
2012-12-17 22:01:52 +01:00
{
[GLWin.cocoaCtx flushBuffer];
}
// Create rendering window.
// Call browser: Core.cpp:EmuThread() > main.cpp:Video_Initialize()
bool cInterfaceAGL::Create(void *&window_handle)
{
int _tx, _ty, _twidth, _theight;
Host_GetRenderWindowSize(_tx, _ty, _twidth, _theight);
2013-03-31 20:36:42 +02:00
GLWin.cocoaWin = (NSView*)(((wxPanel*)window_handle)->GetHandle());
// Enable high-resolution display support.
[GLWin.cocoaWin setWantsBestResolutionOpenGLSurface:YES];
NSWindow *window = [GLWin.cocoaWin window];
float scale = [window backingScaleFactor];
_twidth *= scale;
_theight *= scale;
2012-12-17 22:01:52 +01:00
// Control window size and picture scaling
s_backbuffer_width = _twidth;
s_backbuffer_height = _theight;
2013-03-11 16:36:07 +01:00
NSOpenGLPixelFormatAttribute attr[] = { NSOpenGLPFADoubleBuffer, NSOpenGLPFAOpenGLProfile, NSOpenGLProfileVersion3_2Core, NSOpenGLPFAAccelerated, 0 };
2012-12-17 22:01:52 +01:00
NSOpenGLPixelFormat *fmt = [[NSOpenGLPixelFormat alloc]
initWithAttributes: attr];
if (fmt == nil) {
ERROR_LOG(VIDEO, "failed to create pixel format");
return false;
2012-12-17 22:01:52 +01:00
}
GLWin.cocoaCtx = [[NSOpenGLContext alloc]
initWithFormat: fmt shareContext: nil];
2012-12-17 22:01:52 +01:00
[fmt release];
if (GLWin.cocoaCtx == nil) {
ERROR_LOG(VIDEO, "failed to create context");
return false;
2012-12-17 22:01:52 +01:00
}
if (GLWin.cocoaWin == nil) {
ERROR_LOG(VIDEO, "failed to create window");
return false;
2012-12-17 22:01:52 +01:00
}
2013-03-31 20:36:42 +02:00
[window makeFirstResponder:GLWin.cocoaWin];
2013-03-14 03:34:52 +01:00
[GLWin.cocoaCtx setView: GLWin.cocoaWin];
2013-03-31 20:36:42 +02:00
[window makeKeyAndOrderFront: nil];
2012-12-17 22:01:52 +01:00
return true;
}
bool cInterfaceAGL::MakeCurrent()
{
[GLWin.cocoaCtx makeCurrentContext];
return true;
2012-12-17 22:01:52 +01:00
}
bool cInterfaceAGL::ClearCurrent()
{
// not tested at all
//clearCurrentContext();
return true;
}
2012-12-17 22:01:52 +01:00
// Close backend
void cInterfaceAGL::Shutdown()
{
[GLWin.cocoaCtx clearDrawable];
[GLWin.cocoaCtx release];
GLWin.cocoaCtx = nil;
2012-12-17 22:01:52 +01:00
}
void cInterfaceAGL::Update()
{
2013-03-31 20:36:42 +02:00
NSWindow *window = [GLWin.cocoaWin window];
NSSize size = [GLWin.cocoaWin frame].size;
float scale = [window backingScaleFactor];
size.width *= scale;
size.height *= scale;
if( s_backbuffer_width == size.width
&& s_backbuffer_height == size.height)
return;
2013-03-31 20:36:42 +02:00
s_backbuffer_width = size.width;
s_backbuffer_height = size.height;
[GLWin.cocoaCtx update];
}
2012-12-17 22:01:52 +01:00