2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2014-02-10 18:54:46 +00:00
|
|
|
// 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
|
|
|
|
|
2015-09-18 16:40:00 +00:00
|
|
|
#include "Common/GL/GLInterfaceBase.h"
|
2012-12-17 21:01:52 +00:00
|
|
|
|
|
|
|
class cInterfaceAGL : public cInterfaceBase
|
|
|
|
{
|
2014-08-09 13:49:45 +00:00
|
|
|
private:
|
2016-01-02 19:12:32 +00:00
|
|
|
NSView* cocoaWin;
|
|
|
|
NSOpenGLContext* cocoaCtx;
|
2012-12-17 21:01:52 +00:00
|
|
|
public:
|
2016-01-02 19:12:32 +00:00
|
|
|
void Swap() override;
|
|
|
|
bool Create(void* window_handle, bool core) override;
|
|
|
|
bool MakeCurrent() override;
|
|
|
|
bool ClearCurrent() override;
|
|
|
|
void Shutdown() override;
|
|
|
|
void Update() override;
|
|
|
|
void SwapInterval(int interval) override;
|
2013-03-18 01:58:43 +00:00
|
|
|
|
2012-12-17 21:01:52 +00:00
|
|
|
};
|