2014-02-10 18:54:46 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2012-12-17 21:01:52 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2012-12-17 21:01:52 +00:00
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
#import <AppKit/AppKit.h>
|
|
|
|
#endif
|
|
|
|
|
2014-08-02 06:21:03 +00:00
|
|
|
#include "VideoBackends/OGL/GLInterfaceBase.h"
|
2012-12-17 21:01:52 +00:00
|
|
|
|
|
|
|
class cInterfaceAGL : public cInterfaceBase
|
|
|
|
{
|
2014-08-09 13:49:45 +00:00
|
|
|
private:
|
|
|
|
NSView *cocoaWin;
|
|
|
|
NSOpenGLContext *cocoaCtx;
|
2012-12-17 21:01:52 +00:00
|
|
|
public:
|
2012-12-26 06:34:09 +00:00
|
|
|
void Swap();
|
2014-08-06 04:44:21 +00:00
|
|
|
bool Create(void *window_handle);
|
2012-12-17 21:01:52 +00:00
|
|
|
bool MakeCurrent();
|
2013-04-11 01:32:07 +00:00
|
|
|
bool ClearCurrent();
|
2013-03-18 01:58:43 +00:00
|
|
|
void Shutdown();
|
|
|
|
void Update();
|
2014-01-27 12:24:35 +00:00
|
|
|
void SwapInterval(int interval);
|
2013-03-18 01:58:43 +00:00
|
|
|
|
2012-12-17 21:01:52 +00:00
|
|
|
};
|