2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-18 01:08:10 +02:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 23:43:35 -04:00
|
|
|
// Refer to the license.txt file included.
|
2012-12-17 15:01:52 -06:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2012-12-17 15:01:52 -06:00
|
|
|
|
2017-01-22 23:08:45 -08:00
|
|
|
#include <windows.h>
|
2014-03-12 15:33:41 -04:00
|
|
|
#include <string>
|
2015-09-19 04:40:00 +12:00
|
|
|
#include "Common/GL/GLInterfaceBase.h"
|
2012-12-17 15:01:52 -06:00
|
|
|
|
|
|
|
class cInterfaceWGL : public cInterfaceBase
|
|
|
|
{
|
|
|
|
public:
|
2016-06-24 10:43:46 +02:00
|
|
|
void SwapInterval(int interval) override;
|
|
|
|
void Swap() override;
|
|
|
|
void* GetFuncAddress(const std::string& name) override;
|
2017-06-26 12:32:09 +02:00
|
|
|
bool Create(void* window_handle, bool stereo, bool core) override;
|
2016-10-05 20:37:11 +10:00
|
|
|
bool Create(cInterfaceBase* main_context) override;
|
2016-06-24 10:43:46 +02:00
|
|
|
bool MakeCurrent() override;
|
|
|
|
bool ClearCurrent() override;
|
|
|
|
void Shutdown() override;
|
2012-12-17 15:01:52 -06:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
void Update() override;
|
|
|
|
bool PeekMessages() override;
|
2014-06-15 00:23:43 +02:00
|
|
|
|
2016-10-05 20:37:11 +10:00
|
|
|
std::unique_ptr<cInterfaceBase> CreateSharedContext() override;
|
|
|
|
|
2016-01-02 14:12:58 -05:00
|
|
|
private:
|
2016-10-05 20:37:11 +10:00
|
|
|
static HGLRC CreateCoreContext(HDC dc, HGLRC share_context);
|
|
|
|
static bool CreatePBuffer(HDC onscreen_dc, int width, int height, HANDLE* pbuffer_handle,
|
|
|
|
HDC* pbuffer_dc);
|
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
HWND m_window_handle = nullptr;
|
2016-10-05 20:37:11 +10:00
|
|
|
HANDLE m_pbuffer_handle = nullptr;
|
|
|
|
HDC m_dc = nullptr;
|
|
|
|
HGLRC m_rc = nullptr;
|
2012-12-17 15:01:52 -06:00
|
|
|
};
|