mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 22:09:19 -07:00
271efb450c
Refactor the EGL backend to provide a platform separation here, which is better abstracted away than the old EGL/X11 implementation.
16 lines
403 B
C++
16 lines
403 B
C++
// Copyright 2014 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "DolphinWX/GLInterface/EGL.h"
|
|
|
|
class cInterfaceEGLAndroid : public cInterfaceEGL
|
|
{
|
|
protected:
|
|
EGLDisplay OpenDisplay() override;
|
|
EGLNativeWindowType InitializePlatform(EGLNativeWindowType host_window, EGLConfig config) override;
|
|
void ShutdownPlatform() override;
|
|
};
|