2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-18 01:08:10 +02:00
|
|
|
// Licensed under GPLv2+
|
2014-02-10 13:54:46 -05:00
|
|
|
// Refer to the license.txt file included.
|
2012-12-17 15:01:52 -06:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2012-12-17 15:01:52 -06:00
|
|
|
|
2016-09-18 17:22:39 -07:00
|
|
|
#if defined(__APPLE__) && defined(__OBJC__)
|
2012-12-17 15:01:52 -06:00
|
|
|
#import <AppKit/AppKit.h>
|
2016-09-18 17:22:39 -07:00
|
|
|
#else
|
|
|
|
struct NSOpenGLContext;
|
|
|
|
struct NSView;
|
2012-12-17 15:01:52 -06:00
|
|
|
#endif
|
|
|
|
|
2015-09-19 04:40:00 +12:00
|
|
|
#include "Common/GL/GLInterfaceBase.h"
|
2012-12-17 15:01:52 -06:00
|
|
|
|
|
|
|
class cInterfaceAGL : public cInterfaceBase
|
|
|
|
{
|
2016-06-24 10:43:46 +02:00
|
|
|
public:
|
|
|
|
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;
|
2017-04-15 20:49:00 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
NSView* m_view;
|
|
|
|
NSOpenGLContext* m_context;
|
2012-12-17 15:01:52 -06:00
|
|
|
};
|