summaryrefslogtreecommitdiff
path: root/Source/Core/Common/GL/GLInterface/EGLAndroid.h
blob: 9347027b74f881e053a0e5041425e81d2aa0cff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2014 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.

#pragma once

#include <android/native_window.h>
#include "Common/GL/GLInterface/EGL.h"

class cInterfaceEGLAndroid : public cInterfaceEGL
{
protected:
	EGLDisplay OpenDisplay() override;
	EGLNativeWindowType InitializePlatform(EGLNativeWindowType host_window, EGLConfig config) override;
	void ShutdownPlatform() override;
};