2014-02-10 13:54:46 -05:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// 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
|
2012-12-17 15:01:52 -06:00
|
|
|
|
2014-03-12 15:33:41 -04:00
|
|
|
#include <string>
|
2014-03-27 20:26:52 -04:00
|
|
|
#include <EGL/egl.h>
|
2014-02-17 05:18:15 -05:00
|
|
|
|
|
|
|
#include "Core/ConfigManager.h"
|
2014-08-01 23:21:03 -07:00
|
|
|
#include "VideoBackends/OGL/GLInterfaceBase.h"
|
2012-12-17 15:01:52 -06:00
|
|
|
|
|
|
|
class cInterfaceEGL : public cInterfaceBase
|
|
|
|
{
|
2014-08-09 10:31:27 -04:00
|
|
|
protected:
|
2014-01-18 04:11:59 +00:00
|
|
|
void DetectMode();
|
2014-08-09 09:49:45 -04:00
|
|
|
EGLSurface egl_surf;
|
|
|
|
EGLContext egl_ctx;
|
|
|
|
EGLDisplay egl_dpy;
|
2014-08-09 10:31:27 -04:00
|
|
|
|
|
|
|
virtual EGLDisplay OpenDisplay() = 0;
|
|
|
|
virtual EGLNativeWindowType InitializePlatform(EGLNativeWindowType host_window, EGLConfig config) = 0;
|
|
|
|
virtual void ShutdownPlatform() = 0;
|
2012-12-17 15:01:52 -06:00
|
|
|
public:
|
2013-01-24 10:31:08 -06:00
|
|
|
void SwapInterval(int Interval);
|
2012-12-26 00:34:09 -06:00
|
|
|
void Swap();
|
2014-02-06 21:41:11 +00:00
|
|
|
void SetMode(u32 mode) { s_opengl_mode = mode; }
|
2014-03-12 15:33:41 -04:00
|
|
|
void* GetFuncAddress(const std::string& name);
|
2014-08-06 00:44:21 -04:00
|
|
|
bool Create(void *window_handle);
|
2012-12-17 15:01:52 -06:00
|
|
|
bool MakeCurrent();
|
2013-10-29 01:23:17 -04:00
|
|
|
void Shutdown();
|
2012-12-17 15:01:52 -06:00
|
|
|
};
|