dolphin/Source/Core/VideoBackends/OGL/GLInterface/GLX.h

31 lines
712 B
C
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
2015-05-17 23:08:10 +00:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
2012-12-17 21:01:52 +00:00
#pragma once
2012-12-17 21:01:52 +00:00
#include <string>
#include <GL/glx.h>
#include "VideoBackends/OGL/GLInterfaceBase.h"
#include "VideoBackends/OGL/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;
Display *dpy;
Window win;
GLXContext ctx;
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;
void* GetFuncAddress(const std::string& name) override;
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
};