dolphin/Source/Core/DolphinWX/GLInterface/X11_Util.h

35 lines
623 B
C
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2012-12-26 19:12:26 +01:00
#pragma once
2012-12-26 19:12:26 +01:00
#include <X11/Xlib.h>
#include <X11/keysym.h>
#include <X11/Xutil.h>
2012-12-26 19:12:26 +01:00
#if USE_EGL
class cXInterface
{
private:
void XEventThread();
public:
bool ServerConnect(void);
bool Initialize(void *config, void *window_handle);
void *EGLGetDisplay(void);
void *CreateWindow(void);
void DestroyWindow(void);
void UpdateFPSDisplay(const char *text);
void SwapBuffers();
};
#else
2012-12-26 19:12:26 +01:00
class cX11Window
{
private:
void XEventThread();
public:
void CreateXWindow(void);
void DestroyXWindow(void);
};
#endif