2014-02-10 18:54:46 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// 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
|
2012-12-17 21:01:52 +00:00
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
#include <string>
|
2014-03-28 00:26:52 +00:00
|
|
|
#include <EGL/egl.h>
|
2014-02-17 10:18:15 +00:00
|
|
|
|
|
|
|
#include "Core/ConfigManager.h"
|
2014-08-02 06:21:03 +00:00
|
|
|
#include "VideoBackends/OGL/GLInterfaceBase.h"
|
2012-12-17 21:01:52 +00:00
|
|
|
|
2014-01-20 02:06:55 +00:00
|
|
|
|
|
|
|
class cPlatform
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
#if HAVE_X11
|
|
|
|
cXInterface XInterface;
|
|
|
|
#endif
|
|
|
|
#if HAVE_WAYLAND
|
|
|
|
cWaylandInterface WaylandInterface;
|
|
|
|
#endif
|
|
|
|
public:
|
|
|
|
enum egl_platform platform;
|
|
|
|
bool SelectDisplay(void);
|
2014-01-24 02:41:07 +00:00
|
|
|
bool Init(EGLConfig config, void *window_handle);
|
2014-01-20 02:06:55 +00:00
|
|
|
EGLDisplay EGLGetDisplay(void);
|
|
|
|
EGLNativeWindowType CreateWindow(void);
|
|
|
|
void DestroyWindow(void);
|
2014-03-12 19:33:41 +00:00
|
|
|
void UpdateFPSDisplay(const std::string& text);
|
2014-01-20 02:06:55 +00:00
|
|
|
void ToggleFullscreen(bool fullscreen);
|
|
|
|
void SwapBuffers();
|
|
|
|
};
|
2013-03-25 02:06:34 +00:00
|
|
|
|
2012-12-17 21:01:52 +00:00
|
|
|
class cInterfaceEGL : public cInterfaceBase
|
|
|
|
{
|
|
|
|
private:
|
2013-03-25 02:06:34 +00:00
|
|
|
cPlatform Platform;
|
2014-01-18 04:11:59 +00:00
|
|
|
void DetectMode();
|
2012-12-17 21:01:52 +00:00
|
|
|
public:
|
2013-03-25 02:06:34 +00:00
|
|
|
friend class cPlatform;
|
2013-01-24 16:31:08 +00:00
|
|
|
void SwapInterval(int Interval);
|
2012-12-26 06:34:09 +00:00
|
|
|
void Swap();
|
2014-02-06 21:41:11 +00:00
|
|
|
void SetMode(u32 mode) { s_opengl_mode = mode; }
|
2014-03-12 19:33:41 +00:00
|
|
|
void UpdateFPSDisplay(const std::string& text);
|
|
|
|
void* GetFuncAddress(const std::string& name);
|
2012-12-26 06:07:43 +00:00
|
|
|
bool Create(void *&window_handle);
|
2012-12-17 21:01:52 +00:00
|
|
|
bool MakeCurrent();
|
2013-10-29 05:23:17 +00:00
|
|
|
void Shutdown();
|
2012-12-17 21:01:52 +00:00
|
|
|
};
|