2015-09-26 08:07:48 +00:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2017-09-29 05:31:08 +00:00
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2015-09-26 08:07:48 +00:00
|
|
|
|
2017-05-29 22:02:09 +00:00
|
|
|
class AbstractTexture;
|
|
|
|
|
2015-09-26 08:07:48 +00:00
|
|
|
class SWOGLWindow
|
|
|
|
{
|
|
|
|
public:
|
2018-10-03 13:03:19 +00:00
|
|
|
static void Init(void* display_handle, void* window_handle);
|
2016-06-24 08:43:46 +00:00
|
|
|
static void Shutdown();
|
2017-05-29 22:02:09 +00:00
|
|
|
void Prepare();
|
2015-09-26 08:07:48 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Will be printed on the *next* image
|
|
|
|
void PrintText(const std::string& text, int x, int y, u32 color);
|
2015-09-26 08:07:48 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Image to show, will be swapped immediately
|
2017-09-29 05:31:08 +00:00
|
|
|
void ShowImage(AbstractTexture* image, const EFBRectangle& xfb_region);
|
2015-09-26 08:07:48 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static std::unique_ptr<SWOGLWindow> s_instance;
|
2015-09-26 08:07:48 +00:00
|
|
|
|
|
|
|
private:
|
2016-06-24 08:43:46 +00:00
|
|
|
SWOGLWindow() {}
|
|
|
|
struct TextData
|
|
|
|
{
|
|
|
|
std::string text;
|
|
|
|
int x, y;
|
|
|
|
u32 color;
|
|
|
|
};
|
|
|
|
std::vector<TextData> m_text;
|
2015-09-26 08:07:48 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
bool m_init{false};
|
2015-09-26 08:07:48 +00:00
|
|
|
|
2017-08-24 02:46:23 +00:00
|
|
|
u32 m_image_program, m_image_texture, m_image_vao;
|
2015-09-26 08:07:48 +00:00
|
|
|
};
|