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
|
|
|
|
2016-09-19 00:22:39 +00:00
|
|
|
#if defined(__APPLE__) && defined(__OBJC__)
|
2012-12-17 21:01:52 +00:00
|
|
|
#import <AppKit/AppKit.h>
|
2016-09-19 00:22:39 +00:00
|
|
|
#else
|
|
|
|
struct NSOpenGLContext;
|
2017-07-20 01:38:25 +00:00
|
|
|
struct NSOpenGLPixelFormat;
|
2016-09-19 00:22:39 +00:00
|
|
|
struct NSView;
|
2012-12-17 21:01:52 +00:00
|
|
|
#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
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
public:
|
|
|
|
void Swap() override;
|
2017-06-26 10:32:09 +00:00
|
|
|
bool Create(void* window_handle, bool stereo, bool core) override;
|
2017-07-20 01:38:25 +00:00
|
|
|
bool Create(cInterfaceBase* main_context) override;
|
2016-06-24 08:43:46 +00:00
|
|
|
bool MakeCurrent() override;
|
|
|
|
bool ClearCurrent() override;
|
|
|
|
void Shutdown() override;
|
|
|
|
void Update() override;
|
|
|
|
void SwapInterval(int interval) override;
|
2017-07-20 01:38:25 +00:00
|
|
|
std::unique_ptr<cInterfaceBase> CreateSharedContext() override;
|
2017-04-16 03:49:00 +00:00
|
|
|
|
|
|
|
private:
|
2017-07-20 01:38:25 +00:00
|
|
|
NSView* m_view = nullptr;
|
|
|
|
NSOpenGLContext* m_context = nullptr;
|
|
|
|
NSOpenGLPixelFormat* m_pixel_format = nullptr;
|
2012-12-17 21:01:52 +00:00
|
|
|
};
|