2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:43:35 +00:00
|
|
|
// Refer to the license.txt file included.
|
2012-12-17 21:01:52 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
|
|
|
|
2015-12-21 02:49:49 +00:00
|
|
|
#include <memory>
|
2014-03-12 19:33:41 +00:00
|
|
|
#include <string>
|
|
|
|
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
|
2016-01-02 19:19:28 +00:00
|
|
|
enum class GLInterfaceMode
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
MODE_DETECT,
|
|
|
|
MODE_OPENGL,
|
|
|
|
MODE_OPENGLES2,
|
|
|
|
MODE_OPENGLES3,
|
2014-01-18 04:11:59 +00:00
|
|
|
};
|
|
|
|
|
2012-12-17 21:01:52 +00:00
|
|
|
class cInterfaceBase
|
|
|
|
{
|
|
|
|
protected:
|
2016-06-24 08:43:46 +00:00
|
|
|
// Window dimensions.
|
|
|
|
u32 s_backbuffer_width = 0;
|
|
|
|
u32 s_backbuffer_height = 0;
|
|
|
|
bool m_core = false;
|
|
|
|
bool m_is_shared = false;
|
|
|
|
|
|
|
|
GLInterfaceMode s_opengl_mode = GLInterfaceMode::MODE_DETECT;
|
2013-12-12 18:43:49 +00:00
|
|
|
|
2012-12-17 21:01:52 +00:00
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
virtual ~cInterfaceBase() {}
|
|
|
|
virtual void Swap() {}
|
|
|
|
virtual void SetMode(GLInterfaceMode mode) { s_opengl_mode = GLInterfaceMode::MODE_OPENGL; }
|
|
|
|
virtual GLInterfaceMode GetMode() { return s_opengl_mode; }
|
|
|
|
virtual void* GetFuncAddress(const std::string& name) { return nullptr; }
|
|
|
|
virtual bool Create(void* window_handle, bool core = true) { return true; }
|
|
|
|
virtual bool Create(cInterfaceBase* main_context) { return true; }
|
|
|
|
virtual bool MakeCurrent() { return true; }
|
|
|
|
virtual bool ClearCurrent() { return true; }
|
|
|
|
virtual void Shutdown() {}
|
|
|
|
virtual void SwapInterval(int Interval) {}
|
|
|
|
virtual u32 GetBackBufferWidth() { return s_backbuffer_width; }
|
|
|
|
virtual u32 GetBackBufferHeight() { return s_backbuffer_height; }
|
|
|
|
virtual void SetBackBufferDimensions(u32 W, u32 H)
|
|
|
|
{
|
|
|
|
s_backbuffer_width = W;
|
|
|
|
s_backbuffer_height = H;
|
|
|
|
}
|
|
|
|
virtual void Update() {}
|
|
|
|
virtual bool PeekMessages() { return false; }
|
|
|
|
virtual void UpdateHandle(void* window_handle) {}
|
|
|
|
virtual void UpdateSurface() {}
|
|
|
|
virtual std::unique_ptr<cInterfaceBase> CreateSharedContext() { return nullptr; }
|
2012-12-17 21:01:52 +00:00
|
|
|
};
|
2014-08-02 06:21:03 +00:00
|
|
|
|
2015-12-21 02:49:49 +00:00
|
|
|
extern std::unique_ptr<cInterfaceBase> GLInterface;
|
2014-08-02 06:21:03 +00:00
|
|
|
|
|
|
|
// This function has to be defined along the Host_ functions from Core/Host.h.
|
|
|
|
// Current canonical implementation: DolphinWX/GLInterface/GLInterface.cpp.
|
2015-12-21 02:49:49 +00:00
|
|
|
std::unique_ptr<cInterfaceBase> HostGL_CreateGLInterface();
|