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;
|
2017-07-20 11:38:25 +10:00
|
|
|
struct NSOpenGLPixelFormat;
|
2016-09-18 17:22:39 -07:00
|
|
|
struct NSView;
|
2012-12-17 15:01:52 -06:00
|
|
|
#endif
|
|
|
|
|
2018-10-03 23:02:45 +10:00
|
|
|
#include "Common/GL/GLContext.h"
|
2012-12-17 15:01:52 -06:00
|
|
|
|
2018-10-03 23:02:45 +10:00
|
|
|
class GLContextAGL : public GLContext
|
2012-12-17 15:01:52 -06:00
|
|
|
{
|
2016-06-24 10:43:46 +02:00
|
|
|
public:
|
2018-10-03 23:02:45 +10:00
|
|
|
bool IsHeadless() const override;
|
|
|
|
|
|
|
|
std::unique_ptr<GLContext> CreateSharedContext() override;
|
|
|
|
void Shutdown() override;
|
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
bool MakeCurrent() override;
|
|
|
|
bool ClearCurrent() override;
|
2018-10-03 23:02:45 +10:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
void Update() override;
|
2018-10-03 23:02:45 +10:00
|
|
|
|
|
|
|
void Swap() override;
|
2016-06-24 10:43:46 +02:00
|
|
|
void SwapInterval(int interval) override;
|
2017-04-15 20:49:00 -07:00
|
|
|
|
2018-10-03 23:02:45 +10:00
|
|
|
protected:
|
2018-10-03 23:03:19 +10:00
|
|
|
bool Initialize(void* display_handle, void* window_handle, bool stereo, bool core) override;
|
2018-10-03 23:02:45 +10:00
|
|
|
bool Initialize(GLContext* main_context) override;
|
|
|
|
|
2017-07-20 11:38:25 +10:00
|
|
|
NSView* m_view = nullptr;
|
|
|
|
NSOpenGLContext* m_context = nullptr;
|
|
|
|
NSOpenGLPixelFormat* m_pixel_format = nullptr;
|
2012-12-17 15:01:52 -06:00
|
|
|
};
|