2014-08-09 08:31:27 -06:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2014-08-09 08:31:27 -06:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2016-05-25 12:18:32 -06:00
|
|
|
#include <android/native_window.h>
|
2015-09-18 10:40:00 -06:00
|
|
|
#include "Common/GL/GLInterface/EGL.h"
|
2014-08-09 08:31:27 -06:00
|
|
|
|
|
|
|
class cInterfaceEGLAndroid : public cInterfaceEGL
|
|
|
|
{
|
|
|
|
protected:
|
2016-06-24 02:43:46 -06:00
|
|
|
EGLDisplay OpenDisplay() override;
|
|
|
|
EGLNativeWindowType InitializePlatform(EGLNativeWindowType host_window,
|
|
|
|
EGLConfig config) override;
|
|
|
|
void ShutdownPlatform() override;
|
2014-08-09 08:31:27 -06:00
|
|
|
};
|