// Copyright 2014 Dolphin Emulator Project // Licensed under GPLv2 // Refer to the license.txt file included. #pragma once #include #include "VideoBackends/OGL/GLInterface/EGL.h" #include "VideoBackends/OGL/GLInterface/X11_Util.h" class cInterfaceEGLX11 : public cInterfaceEGL { private: cX11Window XWindow; Display *dpy; protected: EGLDisplay OpenDisplay() override; EGLNativeWindowType InitializePlatform(EGLNativeWindowType host_window, EGLConfig config) override; void ShutdownPlatform() override; };