26 lines
588 B
C
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
2015-05-18 01:08:10 +02:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
2012-12-17 15:01:52 -06:00
#pragma once
2012-12-17 15:01:52 -06:00
#include <string>
#include "Common/GL/GLInterfaceBase.h"
2012-12-17 15:01:52 -06:00
class cInterfaceWGL : public cInterfaceBase
{
public:
void SwapInterval(int interval) override;
void Swap() override;
void* GetFuncAddress(const std::string& name) override;
bool Create(void* window_handle, bool core) override;
bool MakeCurrent() override;
bool ClearCurrent() override;
void Shutdown() override;
2012-12-17 15:01:52 -06:00
void Update() override;
bool PeekMessages() override;
HWND m_window_handle;
2012-12-17 15:01:52 -06:00
};