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

15 lines
345 B
C++
Raw Normal View History

2014-08-09 10:31:27 -04:00
// Copyright 2014 Dolphin Emulator Project
2015-05-18 01:08:10 +02:00
// Licensed under GPLv2+
2014-08-09 10:31:27 -04:00
// Refer to the license.txt file included.
#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
};