diff options
| author | degasus <wickmarkus@web.de> | 2013-03-11 16:36:07 +0100 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2013-03-11 16:36:07 +0100 |
| commit | e1ca002937cf8915ab9fb04f82e2dc5e68db1fa2 (patch) | |
| tree | bbca29a049ce6830aba3e1a829d3383e36aa568f /Source/Core | |
| parent | b43c2e4d13f2db81af291404766d720c729e1bf6 (diff) | |
osx: only use accelerated backends
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinWX/Src/GLInterface/AGL.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Src/GLInterface/AGL.cpp b/Source/Core/DolphinWX/Src/GLInterface/AGL.cpp index bee3d00175..603e6f399c 100644 --- a/Source/Core/DolphinWX/Src/GLInterface/AGL.cpp +++ b/Source/Core/DolphinWX/Src/GLInterface/AGL.cpp @@ -48,7 +48,7 @@ bool cInterfaceAGL::Create(void *&window_handle) NSRect size; NSUInteger style = NSMiniaturizableWindowMask; - NSOpenGLPixelFormatAttribute attr[4] = { NSOpenGLPFADoubleBuffer, NSOpenGLPFAOpenGLProfile, NSOpenGLProfileVersion3_2Core, 0 }; + NSOpenGLPixelFormatAttribute attr[] = { NSOpenGLPFADoubleBuffer, NSOpenGLPFAOpenGLProfile, NSOpenGLProfileVersion3_2Core, NSOpenGLPFAAccelerated, 0 }; NSOpenGLPixelFormat *fmt = [[NSOpenGLPixelFormat alloc] initWithAttributes: attr]; if (fmt == nil) { |
