Duckstation/src/util/opengl_context_wgl.h

58 lines
1.9 KiB
C
Raw Normal View History

2024-02-25 05:32:26 +00:00
// SPDX-FileCopyrightText: 2019-2024 Connor McLaughlin <stenzek@gmail.com>
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
#pragma once
2024-02-25 09:22:25 +00:00
#include "opengl_context.h"
#include "opengl_loader.h"
#include "common/windows_headers.h"
2024-02-25 05:32:26 +00:00
#include "glad/wgl.h"
2022-07-26 08:32:55 +00:00
#include <optional>
2024-02-25 09:22:25 +00:00
class OpenGLContextWGL final : public OpenGLContext
{
public:
2024-02-25 09:22:25 +00:00
OpenGLContextWGL(const WindowInfo& wi);
~OpenGLContextWGL() override;
2024-02-25 09:22:25 +00:00
static std::unique_ptr<OpenGLContext> Create(const WindowInfo& wi, std::span<const Version> versions_to_try,
Error* error);
void* GetProcAddress(const char* name) override;
bool ChangeSurface(const WindowInfo& new_wi) override;
void ResizeSurface(u32 new_surface_width = 0, u32 new_surface_height = 0) override;
bool SwapBuffers() override;
bool IsCurrent() const override;
bool MakeCurrent() override;
bool DoneCurrent() override;
bool SupportsNegativeSwapInterval() const override;
bool SetSwapInterval(s32 interval) override;
2024-02-25 09:22:25 +00:00
std::unique_ptr<OpenGLContext> CreateSharedContext(const WindowInfo& wi, Error* error) override;
private:
ALWAYS_INLINE HWND GetHWND() const { return static_cast<HWND>(m_wi.window_handle); }
2024-02-25 05:32:26 +00:00
HDC GetDCAndSetPixelFormat(HWND hwnd, Error* error);
2022-07-26 08:32:55 +00:00
bool Initialize(std::span<const Version> versions_to_try, Error* error);
2024-02-25 05:32:26 +00:00
bool InitializeDC(Error* error);
2022-07-26 08:32:55 +00:00
void ReleaseDC();
2024-02-25 05:32:26 +00:00
bool CreatePBuffer(Error* error);
bool CreateAnyContext(HGLRC share_context, bool make_current, Error* error);
bool CreateVersionContext(const Version& version, HGLRC share_context, bool make_current, Error* error);
HDC m_dc = {};
HGLRC m_rc = {};
2022-07-26 08:32:55 +00:00
// Can't change pixel format once it's set for a RC.
std::optional<int> m_pixel_format;
// Dummy window for creating a PBuffer off when we're surfaceless.
HWND m_dummy_window = {};
HDC m_dummy_dc = {};
HPBUFFERARB m_pbuffer = {};
};