41 lines
926 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/GLContext.h"
2012-12-17 15:01:52 -06:00
class GLContextAGL : public GLContext
2012-12-17 15:01:52 -06:00
{
public:
bool IsHeadless() const override;
std::unique_ptr<GLContext> CreateSharedContext() override;
void Shutdown() override;
bool MakeCurrent() override;
bool ClearCurrent() override;
void Update() override;
void Swap() override;
void SwapInterval(int interval) override;
2017-04-15 20:49:00 -07:00
protected:
bool Initialize(void* display_handle, void* window_handle, bool stereo, bool core) override;
bool Initialize(GLContext* main_context) override;
NSView* m_view = nullptr;
NSOpenGLContext* m_context = nullptr;
NSOpenGLPixelFormat* m_pixel_format = nullptr;
2012-12-17 15:01:52 -06:00
};