goldberg_emulator/overlay_experimental/windows/OpenGL_Hook.h

43 lines
854 B
C
Raw Normal View History

2019-07-31 20:19:44 +00:00
#ifndef __INCLUDED_OPENGL_HOOK_H__
#define __INCLUDED_OPENGL_HOOK_H__
2019-09-01 18:53:16 +00:00
#include "../Base_Hook.h"
#ifndef NO_OVERLAY
2019-07-31 20:19:44 +00:00
class OpenGL_Hook : public Base_Hook
{
public:
2019-08-01 13:58:24 +00:00
static constexpr const char *DLL_NAME = "opengl32.dll";
2019-09-01 18:53:16 +00:00
2019-08-01 13:58:24 +00:00
using wglSwapBuffers_t = BOOL(WINAPI*)(HDC);
2019-07-31 20:19:44 +00:00
private:
2019-08-16 17:10:12 +00:00
static OpenGL_Hook* _inst;
2019-07-31 20:19:44 +00:00
// Variables
bool hooked;
2019-07-31 20:19:44 +00: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 13:58:24 +00:00
wglSwapBuffers_t wglSwapBuffers;
2019-07-31 20:19:44 +00:00
public:
virtual ~OpenGL_Hook();
2019-08-16 17:10:12 +00:00
bool start_hook();
2019-08-16 17:32:32 +00:00
static OpenGL_Hook* Inst();
virtual const char* get_lib_name() const;
void loadFunctions(wglSwapBuffers_t pfnwglSwapBuffers);
2019-07-31 20:19:44 +00:00
};
#endif//NO_OVERLAY
2019-09-01 18:53:16 +00:00
#endif//__INCLUDED_OPENGL_HOOK_H__