2019-07-31 22:19:44 +02:00
|
|
|
#ifndef __INCLUDED_OPENGL_HOOK_H__
|
|
|
|
#define __INCLUDED_OPENGL_HOOK_H__
|
|
|
|
|
|
|
|
#include "Base_Hook.h"
|
2019-08-14 15:09:57 +02:00
|
|
|
#ifndef NO_OVERLAY
|
2019-07-31 22:19:44 +02:00
|
|
|
|
|
|
|
class OpenGL_Hook : public Base_Hook
|
|
|
|
{
|
|
|
|
public:
|
2019-08-01 15:58:24 +02:00
|
|
|
static constexpr const char *DLL_NAME = "opengl32.dll";
|
2019-07-31 22:19:44 +02:00
|
|
|
|
2019-08-01 15:58:24 +02:00
|
|
|
using wglSwapBuffers_t = BOOL(WINAPI*)(HDC);
|
2019-07-31 22:19:44 +02:00
|
|
|
|
|
|
|
private:
|
2019-08-16 19:10:12 +02:00
|
|
|
static OpenGL_Hook* _inst;
|
|
|
|
|
2019-07-31 22:19:44 +02:00
|
|
|
// Variables
|
2019-08-27 15:38:07 +02:00
|
|
|
bool hooked;
|
2019-07-31 22:19:44 +02:00
|
|
|
bool initialized;
|
|
|
|
|
|
|
|
// Functions
|
|
|
|
OpenGL_Hook();
|
|
|
|
|
|
|
|
void resetRenderState();
|
|
|
|
void prepareForOverlay(HDC hDC);
|
|
|
|
|
|
|
|
// Hook to render functions
|
|
|
|
static BOOL WINAPI MywglSwapBuffers(HDC hDC);
|
|
|
|
|
2019-08-01 15:58:24 +02:00
|
|
|
wglSwapBuffers_t wglSwapBuffers;
|
2019-07-31 22:19:44 +02:00
|
|
|
|
|
|
|
public:
|
2019-08-27 15:38:07 +02:00
|
|
|
virtual ~OpenGL_Hook();
|
|
|
|
|
2019-08-16 19:10:12 +02:00
|
|
|
bool start_hook();
|
2019-08-16 19:32:32 +02:00
|
|
|
static OpenGL_Hook* Inst();
|
2019-08-26 16:38:01 +02:00
|
|
|
virtual const char* get_lib_name() const;
|
2019-08-27 15:38:07 +02:00
|
|
|
void loadFunctions(wglSwapBuffers_t pfnwglSwapBuffers);
|
2019-07-31 22:19:44 +02:00
|
|
|
};
|
|
|
|
|
2019-08-14 15:09:57 +02:00
|
|
|
#endif//NO_OVERLAY
|
2019-07-31 22:19:44 +02:00
|
|
|
#endif//__INCLUDED_OPENGL_HOOK_H__
|