dolphin/Source/Core/Common/GL/GLInterface/AGL.h

28 lines
574 B
C
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
2015-05-17 23:08:10 +00:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
2012-12-17 21:01:52 +00:00
#pragma once
2012-12-17 21:01:52 +00:00
#ifdef __APPLE__
#import <AppKit/AppKit.h>
#endif
#include "Common/GL/GLInterfaceBase.h"
2012-12-17 21:01:52 +00:00
class cInterfaceAGL : public cInterfaceBase
{
private:
NSView* cocoaWin;
NSOpenGLContext* cocoaCtx;
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;
2012-12-17 21:01:52 +00:00
};