Files
dolphin/Source/Core/VideoBackends/Software/SWOGLWindow.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
805 B
C++
Raw Normal View History

2015-09-26 10:07:48 +02:00
// Copyright 2015 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2015-09-26 10:07:48 +02:00
#pragma once
#include <memory>
#include "Common/CommonTypes.h"
#include "Common/MathUtil.h"
2018-10-03 23:03:26 +10:00
2017-05-29 17:02:09 -05:00
class AbstractTexture;
class GLContext;
struct WindowSystemInfo;
2017-05-29 17:02:09 -05:00
2015-09-26 10:07:48 +02:00
class SWOGLWindow
{
public:
2018-10-03 23:03:26 +10:00
~SWOGLWindow();
GLContext* GetContext() const { return m_gl_context.get(); }
bool IsHeadless() const;
2015-09-26 10:07:48 +02:00
// Image to show, will be swapped immediately
void ShowImage(const AbstractTexture* image, const MathUtil::Rectangle<int>& xfb_region);
2015-09-26 10:07:48 +02:00
2018-10-03 23:03:26 +10:00
static std::unique_ptr<SWOGLWindow> Create(const WindowSystemInfo& wsi);
2015-09-26 10:07:48 +02:00
private:
2018-10-03 23:03:26 +10:00
SWOGLWindow();
bool Initialize(const WindowSystemInfo& wsi);
u32 m_image_program = 0;
u32 m_image_texture = 0;
u32 m_image_vao = 0;
2015-09-26 10:07:48 +02:00
2018-10-03 23:03:26 +10:00
std::unique_ptr<GLContext> m_gl_context;
2015-09-26 10:07:48 +02:00
};