dolphin/Source/Core/VideoBackends/OGL/GLInterface/EGL.h

33 lines
799 B
C
Raw Normal View History

// Copyright 2014 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2012-12-17 21:01:52 +00:00
#pragma once
2012-12-17 21:01:52 +00:00
#include <string>
2014-03-28 00:26:52 +00:00
#include <EGL/egl.h>
#include "Core/ConfigManager.h"
#include "VideoBackends/OGL/GLInterfaceBase.h"
2012-12-17 21:01:52 +00:00
class cInterfaceEGL : public cInterfaceBase
{
protected:
void DetectMode();
EGLSurface egl_surf;
EGLContext egl_ctx;
EGLDisplay egl_dpy;
virtual EGLDisplay OpenDisplay() = 0;
virtual EGLNativeWindowType InitializePlatform(EGLNativeWindowType host_window, EGLConfig config) = 0;
virtual void ShutdownPlatform() = 0;
2012-12-17 21:01:52 +00:00
public:
void SwapInterval(int Interval);
2012-12-26 06:34:09 +00:00
void Swap();
void SetMode(u32 mode) { s_opengl_mode = mode; }
void* GetFuncAddress(const std::string& name);
bool Create(void *window_handle);
2012-12-17 21:01:52 +00:00
bool MakeCurrent();
void Shutdown();
2012-12-17 21:01:52 +00:00
};