2013-04-18 03:43:35 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2012-12-17 21:01:52 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2012-12-17 21:01:52 +00:00
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
#include <string>
|
2014-08-02 06:21:03 +00:00
|
|
|
#include "VideoBackends/OGL/GLInterfaceBase.h"
|
2012-12-17 21:01:52 +00:00
|
|
|
|
|
|
|
class cInterfaceWGL : public cInterfaceBase
|
|
|
|
{
|
|
|
|
public:
|
2013-01-24 16:31:08 +00:00
|
|
|
void SwapInterval(int Interval);
|
2012-12-26 06:34:09 +00:00
|
|
|
void Swap();
|
2014-03-17 23:17:12 +00:00
|
|
|
void* GetFuncAddress(const std::string& name);
|
2014-08-06 04:44:21 +00:00
|
|
|
bool Create(void *window_handle);
|
2012-12-17 21:01:52 +00:00
|
|
|
bool MakeCurrent();
|
2013-04-11 01:32:07 +00:00
|
|
|
bool ClearCurrent();
|
2013-10-29 05:23:17 +00:00
|
|
|
void Shutdown();
|
2012-12-17 21:01:52 +00:00
|
|
|
|
|
|
|
void Update();
|
|
|
|
bool PeekMessages();
|
2014-06-14 22:23:43 +00:00
|
|
|
|
2014-08-05 06:51:32 +00:00
|
|
|
HWND m_window_handle;
|
2012-12-17 21:01:52 +00:00
|
|
|
};
|