dolphin/Source/Core/Common/GL/GLInterface/WGL.h

42 lines
997 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 22:01:52 +01:00
#pragma once
2012-12-17 22:01:52 +01:00
#include <windows.h>
#include <string>
#include "Common/GL/GLContext.h"
2012-12-17 22:01:52 +01:00
class GLContextWGL final : public GLContext
2012-12-17 22:01:52 +01:00
{
public:
~GLContextWGL();
bool IsHeadless() const;
std::unique_ptr<GLContext> CreateSharedContext() override;
bool MakeCurrent() override;
bool ClearCurrent() override;
2012-12-17 22:01:52 +01:00
void Update() override;
void Swap() override;
void SwapInterval(int interval) override;
void* GetFuncAddress(const std::string& name) override;
protected:
bool Initialize(const WindowSystemInfo& wsi, bool stereo, bool core) override;
static HGLRC CreateCoreContext(HDC dc, HGLRC share_context);
static bool CreatePBuffer(HDC onscreen_dc, int width, int height, HANDLE* pbuffer_handle,
HDC* pbuffer_dc);
HWND m_window_handle = nullptr;
HANDLE m_pbuffer_handle = nullptr;
HDC m_dc = nullptr;
HGLRC m_rc = nullptr;
2012-12-17 22:01:52 +01:00
};