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