2014-02-10 20:54:46 +02:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// 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
|
2012-12-17 23:01:52 +02:00
|
|
|
|
2014-01-13 11:14:09 +02:00
|
|
|
#include <EGL/egl.h>
|
2012-12-17 23:01:52 +02:00
|
|
|
#include "InterfaceBase.h"
|
2014-01-20 04:06:55 +02:00
|
|
|
#include "ConfigManager.h"
|
2012-12-17 23:01:52 +02:00
|
|
|
|
2014-01-20 04:06:55 +02: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 04:41:07 +02:00
|
|
|
bool Init(EGLConfig config, void *window_handle);
|
2014-01-20 04:06:55 +02:00
|
|
|
EGLDisplay EGLGetDisplay(void);
|
|
|
|
EGLNativeWindowType CreateWindow(void);
|
|
|
|
void DestroyWindow(void);
|
|
|
|
void UpdateFPSDisplay(const char *text);
|
|
|
|
void ToggleFullscreen(bool fullscreen);
|
|
|
|
void SwapBuffers();
|
|
|
|
};
|
2013-03-25 04:06:34 +02:00
|
|
|
|
2012-12-17 23:01:52 +02:00
|
|
|
class cInterfaceEGL : public cInterfaceBase
|
|
|
|
{
|
|
|
|
private:
|
2013-03-25 04:06:34 +02:00
|
|
|
cPlatform Platform;
|
2014-01-18 06:11:59 +02:00
|
|
|
void DetectMode();
|
2012-12-17 23:01:52 +02:00
|
|
|
public:
|
2013-03-25 04:06:34 +02:00
|
|
|
friend class cPlatform;
|
2013-01-24 18:31:08 +02:00
|
|
|
void SwapInterval(int Interval);
|
2012-12-26 08:34:09 +02:00
|
|
|
void Swap();
|
2014-02-06 23:41:11 +02:00
|
|
|
void SetMode(u32 mode) { s_opengl_mode = mode; }
|
2012-12-17 23:01:52 +02:00
|
|
|
void UpdateFPSDisplay(const char *Text);
|
2014-01-18 16:18:32 +02:00
|
|
|
void* GetFuncAddress(std::string name);
|
2012-12-26 08:07:43 +02:00
|
|
|
bool Create(void *&window_handle);
|
2012-12-17 23:01:52 +02:00
|
|
|
bool MakeCurrent();
|
2013-10-29 07:23:17 +02:00
|
|
|
void Shutdown();
|
2012-12-17 23:01:52 +02:00
|
|
|
};
|