2014-02-10 11:54:46 -07:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2012-12-17 14:01:52 -07:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2012-12-17 14:01:52 -07:00
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
#import <AppKit/AppKit.h>
|
|
|
|
#endif
|
|
|
|
|
2014-08-02 00:21:03 -06:00
|
|
|
#include "VideoBackends/OGL/GLInterfaceBase.h"
|
2012-12-17 14:01:52 -07:00
|
|
|
|
|
|
|
class cInterfaceAGL : public cInterfaceBase
|
|
|
|
{
|
|
|
|
public:
|
2012-12-25 23:34:09 -07:00
|
|
|
void Swap();
|
2012-12-25 23:07:43 -07:00
|
|
|
bool Create(void *&window_handle);
|
2012-12-17 14:01:52 -07:00
|
|
|
bool MakeCurrent();
|
2013-04-10 19:32:07 -06:00
|
|
|
bool ClearCurrent();
|
2013-03-17 19:58:43 -06:00
|
|
|
void Shutdown();
|
|
|
|
void Update();
|
2014-01-27 05:24:35 -07:00
|
|
|
void SwapInterval(int interval);
|
2013-03-17 19:58:43 -06:00
|
|
|
|
2012-12-17 14:01:52 -07:00
|
|
|
};
|