2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2014-02-10 18:54:46 +00:00
|
|
|
// Refer to the license.txt file included.
|
2012-12-17 21:01:52 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2012-12-17 21:01:52 +00:00
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
#include <string>
|
2014-08-09 13:49:45 +00:00
|
|
|
#include <GL/glx.h>
|
2014-03-12 19:33:41 +00:00
|
|
|
|
2015-09-18 16:40:00 +00:00
|
|
|
#include "Common/GL/GLInterfaceBase.h"
|
|
|
|
#include "Common/GL/GLInterface/X11_Util.h"
|
2012-12-17 21:01:52 +00:00
|
|
|
|
|
|
|
class cInterfaceGLX : public cInterfaceBase
|
|
|
|
{
|
|
|
|
private:
|
2012-12-26 18:12:26 +00:00
|
|
|
cX11Window XWindow;
|
2014-08-09 13:49:45 +00:00
|
|
|
Display *dpy;
|
|
|
|
Window win;
|
|
|
|
GLXContext ctx;
|
2014-12-20 09:57:34 +00:00
|
|
|
GLXFBConfig fbconfig;
|
2012-12-17 21:01:52 +00:00
|
|
|
public:
|
2012-12-26 18:12:26 +00:00
|
|
|
friend class cX11Window;
|
2014-03-08 00:54:44 +00:00
|
|
|
void SwapInterval(int Interval) override;
|
|
|
|
void Swap() override;
|
2014-03-17 23:17:12 +00:00
|
|
|
void* GetFuncAddress(const std::string& name) override;
|
2015-09-17 15:48:25 +00:00
|
|
|
bool Create(void *window_handle, bool core) override;
|
2014-03-08 00:54:44 +00:00
|
|
|
bool MakeCurrent() override;
|
|
|
|
bool ClearCurrent() override;
|
|
|
|
void Shutdown() override;
|
2012-12-17 21:01:52 +00:00
|
|
|
};
|