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