28 lines
499 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
#ifdef __APPLE__
#import <AppKit/AppKit.h>
#endif
#include "VideoBackends/OGL/GLInterfaceBase.h"
2012-12-17 15:01:52 -06:00
class cInterfaceAGL : public cInterfaceBase
{
private:
NSView *cocoaWin;
NSOpenGLContext *cocoaCtx;
2012-12-17 15:01:52 -06:00
public:
2012-12-26 00:34:09 -06:00
void Swap();
bool Create(void *window_handle);
2012-12-17 15:01:52 -06:00
bool MakeCurrent();
bool ClearCurrent();
void Shutdown();
void Update();
2014-01-27 21:24:35 +09:00
void SwapInterval(int interval);
2012-12-17 15:01:52 -06:00
};