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