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-08-09 13:49:45 +00:00
|
|
|
#include <GL/glx.h>
|
2016-01-23 10:21:53 +00:00
|
|
|
#include <GL/glxext.h>
|
|
|
|
#include <memory>
|
2016-06-24 08:43:46 +00:00
|
|
|
#include <string>
|
2016-01-23 10:21:53 +00:00
|
|
|
#include <vector>
|
2014-03-12 19:33:41 +00:00
|
|
|
|
2015-09-18 16:40:00 +00:00
|
|
|
#include "Common/GL/GLInterface/X11_Util.h"
|
2016-06-24 08:43:46 +00:00
|
|
|
#include "Common/GL/GLInterfaceBase.h"
|
2012-12-17 21:01:52 +00:00
|
|
|
|
|
|
|
class cInterfaceGLX : public cInterfaceBase
|
|
|
|
{
|
|
|
|
private:
|
2016-01-23 10:21:53 +00:00
|
|
|
Window m_host_window;
|
2016-06-24 08:43:46 +00:00
|
|
|
cX11Window XWindow;
|
|
|
|
Display* dpy;
|
|
|
|
Window win;
|
|
|
|
GLXContext ctx;
|
|
|
|
GLXFBConfig fbconfig;
|
2016-01-23 10:21:53 +00:00
|
|
|
bool m_has_handle;
|
|
|
|
bool m_supports_pbuffer = false;
|
|
|
|
GLXPbufferSGIX m_pbuffer = 0;
|
|
|
|
std::vector<int> m_attribs;
|
|
|
|
|
|
|
|
bool CreateWindowSurface();
|
|
|
|
void DestroyWindowSurface();
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2012-12-17 21:01:52 +00:00
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
friend class cX11Window;
|
|
|
|
void SwapInterval(int Interval) override;
|
|
|
|
void Swap() override;
|
|
|
|
void* GetFuncAddress(const std::string& name) override;
|
2017-06-26 10:32:09 +00:00
|
|
|
bool Create(void* window_handle, bool stereo, bool core) override;
|
2016-01-23 10:21:53 +00:00
|
|
|
bool Create(cInterfaceBase* main_context) override;
|
2016-06-24 08:43:46 +00:00
|
|
|
bool MakeCurrent() override;
|
|
|
|
bool ClearCurrent() override;
|
|
|
|
void Shutdown() override;
|
2016-01-23 10:21:53 +00:00
|
|
|
std::unique_ptr<cInterfaceBase> CreateSharedContext() override;
|
2012-12-17 21:01:52 +00:00
|
|
|
};
|