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 <X11/Xlib.h>
|
|
|
|
|
2015-09-19 04:40:00 +12:00
|
|
|
#include "Common/GL/GLInterface/EGL.h"
|
|
|
|
#include "Common/GL/GLInterface/X11_Util.h"
|
2014-08-09 10:31:27 -04:00
|
|
|
|
|
|
|
class cInterfaceEGLX11 : public cInterfaceEGL
|
|
|
|
{
|
|
|
|
private:
|
2016-06-24 10:43:46 +02:00
|
|
|
cX11Window XWindow;
|
|
|
|
Display* dpy;
|
|
|
|
|
2014-08-09 10:31:27 -04:00
|
|
|
protected:
|
2016-06-24 10:43:46 +02:00
|
|
|
EGLDisplay OpenDisplay() override;
|
|
|
|
EGLNativeWindowType InitializePlatform(EGLNativeWindowType host_window,
|
|
|
|
EGLConfig config) override;
|
|
|
|
void ShutdownPlatform() override;
|
2014-08-09 10:31:27 -04:00
|
|
|
};
|