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-08-16 10:36:44 +02:00
|
|
|
//using wglMakeCurrent_t = BOOL(WINAPI*)(HDC, HGLRC);
|
2019-07-31 22:19:44 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Variables
|
|
|
|
bool initialized;
|
|
|
|
|
|
|
|
// Functions
|
|
|
|
OpenGL_Hook();
|
|
|
|
virtual ~OpenGL_Hook();
|
|
|
|
|
2019-08-16 10:31:29 +02:00
|
|
|
void start_hook();
|
2019-07-31 22:19:44 +02:00
|
|
|
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
|
|
|
|
|
|
|
// Hook functions so we know we use OGL
|
2019-08-16 10:36:44 +02:00
|
|
|
//static BOOL WINAPI MywglMakeCurrent(HDC hDC, HGLRC hGLRC);
|
2019-07-31 22:19:44 +02:00
|
|
|
|
2019-08-16 10:36:44 +02:00
|
|
|
//wglMakeCurrent_t wglMakeCurrent;
|
2019-07-31 22:19:44 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
static void Create(); // Initialize OGL Hook.
|
|
|
|
};
|
|
|
|
|
2019-08-14 15:09:57 +02:00
|
|
|
#endif//NO_OVERLAY
|
2019-07-31 22:19:44 +02:00
|
|
|
#endif//__INCLUDED_OPENGL_HOOK_H__
|