dolphin/Source/Core/DolphinWX/GLInterface/EGL.h

27 lines
601 B
C
Raw Normal View History

// Copyright 2014 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2012-12-17 22:01:52 +01:00
#pragma once
2012-12-17 22:01:52 +01:00
#include <string>
2014-03-28 01:26:52 +01:00
#include <EGL/egl.h>
#include "Core/ConfigManager.h"
#include "VideoBackends/OGL/GLInterfaceBase.h"
2012-12-17 22:01:52 +01:00
class cInterfaceEGL : public cInterfaceBase
{
private:
void DetectMode();
2012-12-17 22:01:52 +01:00
public:
void SwapInterval(int Interval);
2012-12-26 07:34:09 +01:00
void Swap();
void SetMode(u32 mode) { s_opengl_mode = mode; }
void UpdateFPSDisplay(const std::string& text);
void* GetFuncAddress(const std::string& name);
bool Create(void *&window_handle);
2012-12-17 22:01:52 +01:00
bool MakeCurrent();
void Shutdown();
2012-12-17 22:01:52 +01:00
};