mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-30 05:48:03 +03:00
14 lines
345 B
C++
14 lines
345 B
C++
// Copyright 2014 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "Common/GL/GLInterface/EGL.h"
|
|
|
|
class GLContextEGLAndroid final : public GLContextEGL
|
|
{
|
|
protected:
|
|
EGLDisplay OpenEGLDisplay() override;
|
|
EGLNativeWindowType GetEGLNativeWindow(EGLConfig config) override;
|
|
};
|