2013-04-18 06:43:35 +03:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2012-12-17 23:01:52 +02:00
|
|
|
|
2014-02-10 20:54:46 +02:00
|
|
|
#pragma once
|
2012-12-17 23:01:52 +02:00
|
|
|
|
2014-02-17 12:18:15 +02:00
|
|
|
#include "DolphinWX/GLInterface/InterfaceBase.h"
|
2012-12-17 23:01:52 +02:00
|
|
|
|
|
|
|
class cInterfaceWGL : public cInterfaceBase
|
|
|
|
{
|
|
|
|
public:
|
2013-01-24 18:31:08 +02:00
|
|
|
void SwapInterval(int Interval);
|
2012-12-26 08:34:09 +02:00
|
|
|
void Swap();
|
2012-12-17 23:01:52 +02:00
|
|
|
void UpdateFPSDisplay(const char *Text);
|
2014-01-18 16:18:32 +02:00
|
|
|
void* GetFuncAddress(std::string name);
|
2012-12-26 08:07:43 +02:00
|
|
|
bool Create(void *&window_handle);
|
2012-12-17 23:01:52 +02:00
|
|
|
bool MakeCurrent();
|
2013-04-11 04:32:07 +03:00
|
|
|
bool ClearCurrent();
|
2013-10-29 07:23:17 +02:00
|
|
|
void Shutdown();
|
2012-12-17 23:01:52 +02:00
|
|
|
|
|
|
|
void Update();
|
|
|
|
bool PeekMessages();
|
|
|
|
};
|