blob: 36bc5b9e218fc720867125fbc38a48dfa096a46f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright 2014 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "Common/GL/GLInterface/EGL.h"
class GLContextEGLAndroid final : public GLContextEGL
{
protected:
EGLDisplay OpenEGLDisplay() override;
EGLNativeWindowType GetEGLNativeWindow(EGLConfig config) override;
};
|