Move GLInterface to the OGL VideoBackend's directory.

This commit is contained in:
Augustin Cavalier
2014-11-01 10:33:02 -04:00
parent 089e32ba7d
commit 29593d403b
27 changed files with 82 additions and 74 deletions

View File

@ -0,0 +1,15 @@
// Copyright 2014 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
#include "VideoBackends/OGL/GLInterface/EGL.h"
class cInterfaceEGLAndroid : public cInterfaceEGL
{
protected:
EGLDisplay OpenDisplay() override;
EGLNativeWindowType InitializePlatform(EGLNativeWindowType host_window, EGLConfig config) override;
void ShutdownPlatform() override;
};