2014-08-09 14:31:27 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-11-01 14:33:02 +00:00
|
|
|
#include "VideoBackends/OGL/GLInterface/EGL.h"
|
2014-08-09 14:31:27 +00:00
|
|
|
|
|
|
|
class cInterfaceEGLAndroid : public cInterfaceEGL
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
EGLDisplay OpenDisplay() override;
|
|
|
|
EGLNativeWindowType InitializePlatform(EGLNativeWindowType host_window, EGLConfig config) override;
|
|
|
|
void ShutdownPlatform() override;
|
|
|
|
};
|