35 lines
875 B
C
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
2015-05-18 01:08:10 +02:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
2012-12-17 15:01:52 -06:00
#pragma once
2012-12-17 15:01:52 -06:00
#if defined(__APPLE__) && defined(__OBJC__)
2012-12-17 15:01:52 -06:00
#import <AppKit/AppKit.h>
#else
struct NSOpenGLContext;
struct NSOpenGLPixelFormat;
struct NSView;
2012-12-17 15:01:52 -06:00
#endif
#include "Common/GL/GLInterfaceBase.h"
2012-12-17 15:01:52 -06:00
class cInterfaceAGL : public cInterfaceBase
{
public:
void Swap() override;
bool Create(void* window_handle, bool stereo, bool core) override;
bool Create(cInterfaceBase* main_context) override;
bool MakeCurrent() override;
bool ClearCurrent() override;
void Shutdown() override;
void Update() override;
void SwapInterval(int interval) override;
std::unique_ptr<cInterfaceBase> CreateSharedContext() override;
2017-04-15 20:49:00 -07:00
private:
NSView* m_view = nullptr;
NSOpenGLContext* m_context = nullptr;
NSOpenGLPixelFormat* m_pixel_format = nullptr;
2012-12-17 15:01:52 -06:00
};