dolphin/Source/Core/DolphinWX/GLInterface/AGL.h

25 lines
445 B
C
Raw Normal View History

// Copyright 2014 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2012-12-17 22:01:52 +01:00
#pragma once
2012-12-17 22:01:52 +01:00
#ifdef __APPLE__
#import <AppKit/AppKit.h>
#endif
#include "DolphinWX/GLInterface/InterfaceBase.h"
2012-12-17 22:01:52 +01:00
class cInterfaceAGL : public cInterfaceBase
{
public:
2012-12-26 07:34:09 +01:00
void Swap();
bool Create(void *&window_handle);
2012-12-17 22:01:52 +01:00
bool MakeCurrent();
bool ClearCurrent();
void Shutdown();
void Update();
2014-01-27 13:24:35 +01:00
void SwapInterval(int interval);
2012-12-17 22:01:52 +01:00
};