dolphin/Source/Core/VideoBackends/OGL/GLInterface/WGL.h

26 lines
504 B
C
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
2015-05-17 23:08:10 +00:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
2012-12-17 21:01:52 +00:00
#pragma once
2012-12-17 21:01:52 +00:00
#include <string>
#include "VideoBackends/OGL/GLInterfaceBase.h"
2012-12-17 21:01:52 +00:00
class cInterfaceWGL : public cInterfaceBase
{
public:
void SwapInterval(int Interval);
2012-12-26 06:34:09 +00:00
void Swap();
void* GetFuncAddress(const std::string& name);
bool Create(void *window_handle);
2012-12-17 21:01:52 +00:00
bool MakeCurrent();
bool ClearCurrent();
void Shutdown();
2012-12-17 21:01:52 +00:00
void Update();
bool PeekMessages();
HWND m_window_handle;
2012-12-17 21:01:52 +00:00
};