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-03-12 21:33:41 +02:00
|
|
|
#include <string>
|
2014-03-28 02:26:52 +02:00
|
|
|
#include <EGL/egl.h>
|
2014-02-17 12:18:15 +02:00
|
|
|
|
|
|
|
#include "Core/ConfigManager.h"
|
2014-08-02 09:21:03 +03:00
|
|
|
#include "VideoBackends/OGL/GLInterfaceBase.h"
|
2012-12-17 23:01:52 +02:00
|
|
|
|
|
|
|
class cInterfaceEGL : public cInterfaceBase
|
|
|
|
{
|
|
|
|
private:
|
2014-01-18 06:11:59 +02:00
|
|
|
void DetectMode();
|
2014-08-09 16:49:45 +03:00
|
|
|
EGLSurface egl_surf;
|
|
|
|
EGLContext egl_ctx;
|
|
|
|
EGLDisplay egl_dpy;
|
2012-12-17 23:01:52 +02:00
|
|
|
public:
|
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; }
|
2014-03-12 21:33:41 +02:00
|
|
|
void* GetFuncAddress(const std::string& name);
|
2014-08-06 07:44:21 +03: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
|
|
|
};
|