Files
dolphin/Source/Core/Common/GL/GLInterface/EGLAndroid.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
322 B
C++
Raw Normal View History

2014-08-09 10:31:27 -04:00
// Copyright 2014 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2014-08-09 10:31:27 -04:00
#pragma once
#include "Common/GL/GLInterface/EGL.h"
2014-08-09 10:31:27 -04:00
class GLContextEGLAndroid final : public GLContextEGL
2014-08-09 10:31:27 -04:00
{
protected:
EGLDisplay OpenEGLDisplay() override;
EGLNativeWindowType GetEGLNativeWindow(EGLConfig config) override;
2014-08-09 10:31:27 -04:00
};