1
// Copyright 2014 Dolphin Emulator Project
2
// Licensed under GPLv2+
3
// Refer to the license.txt file included.
7
#include "Common/GL/GLInterface/EGL.h"
9
class cInterfaceEGLAndroid : public cInterfaceEGL {
11
cInterfaceEGLAndroid() : internalWidth_(0), internalHeight_(0) {}
13
EGLDisplay OpenDisplay() override;
14
EGLNativeWindowType InitializePlatform(EGLNativeWindowType host_window, EGLConfig config) override;
15
void ShutdownPlatform() override;
16
void OverrideBackbufferDimensions(int internalWidth, int internalHeight) override {
17
internalWidth_ = internalWidth;
18
internalHeight_ = internalHeight;