2019-09-01 18:53:16 +00:00
|
|
|
#ifndef __INCLUDED_OPENGLX_HOOK_H__
|
|
|
|
#define __INCLUDED_OPENGLX_HOOK_H__
|
|
|
|
|
|
|
|
#include "../Base_Hook.h"
|
|
|
|
|
|
|
|
#ifdef __LINUX__
|
|
|
|
#ifndef NO_OVERLAY
|
|
|
|
#include <GL/glew.h>
|
|
|
|
#include <GL/glx.h>
|
|
|
|
|
|
|
|
class OpenGLX_Hook : public Base_Hook
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static constexpr const char *DLL_NAME = "libGLX.so";
|
|
|
|
|
|
|
|
private:
|
|
|
|
static OpenGLX_Hook* _inst;
|
|
|
|
|
|
|
|
// Variables
|
|
|
|
bool hooked;
|
|
|
|
bool initialized;
|
|
|
|
|
|
|
|
// Functions
|
|
|
|
OpenGLX_Hook();
|
|
|
|
|
|
|
|
void resetRenderState();
|
2019-09-03 08:32:32 +00:00
|
|
|
void prepareForOverlay(Display* display, GLXDrawable drawable);
|
2019-09-01 18:53:16 +00:00
|
|
|
|
|
|
|
// Hook to render functions
|
2019-09-03 08:32:32 +00:00
|
|
|
|
2019-09-01 18:53:16 +00:00
|
|
|
|
|
|
|
decltype(glXSwapBuffers)* _glXSwapBuffers;
|
|
|
|
|
|
|
|
public:
|
2019-09-03 08:32:32 +00:00
|
|
|
static void MyglXSwapBuffers(Display* display, GLXDrawable drawable);
|
|
|
|
|
2019-09-01 18:53:16 +00:00
|
|
|
virtual ~OpenGLX_Hook();
|
|
|
|
|
|
|
|
bool start_hook();
|
|
|
|
static OpenGLX_Hook* Inst();
|
|
|
|
virtual const char* get_lib_name() const;
|
|
|
|
void loadFunctions(decltype(glXSwapBuffers)* pfnglXSwapBuffers);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif//NO_OVERLAY
|
|
|
|
#endif//__LINUX__
|
|
|
|
#endif//__INCLUDED_OPENGLX_HOOK_H__
|