mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2025-12-05 11:44:53 +01:00
Added opengl hook
This commit is contained in:
parent
a60a106daf
commit
6328b59b0b
5 changed files with 879 additions and 18 deletions
41
overlay_experimental/OpenGL_Hook.h
Normal file
41
overlay_experimental/OpenGL_Hook.h
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
#ifndef __INCLUDED_OPENGL_HOOK_H__
|
||||
#define __INCLUDED_OPENGL_HOOK_H__
|
||||
|
||||
#include "DirectX_VTables.h"
|
||||
#include "Base_Hook.h"
|
||||
|
||||
class OpenGL_Hook : public Base_Hook
|
||||
{
|
||||
public:
|
||||
static constexpr const char DLL_NAME[] = "opengl32.dll";
|
||||
|
||||
using wglSwapBuffers_t = BOOL(WINAPI)(HDC);
|
||||
using wglMakeCurrent_t = BOOL(WINAPI)(HDC, HGLRC);
|
||||
|
||||
private:
|
||||
// Variables
|
||||
bool initialized;
|
||||
|
||||
// Functions
|
||||
OpenGL_Hook();
|
||||
virtual ~OpenGL_Hook();
|
||||
|
||||
void hook_ogl();
|
||||
void resetRenderState();
|
||||
void prepareForOverlay(HDC hDC);
|
||||
|
||||
// Hook to render functions
|
||||
static BOOL WINAPI MywglSwapBuffers(HDC hDC);
|
||||
|
||||
wglSwapBuffers_t* wglSwapBuffers;
|
||||
|
||||
// Hook functions so we know we use OGL
|
||||
static BOOL WINAPI MywglMakeCurrent(HDC hDC, HGLRC hGLRC);
|
||||
|
||||
wglMakeCurrent_t* wglMakeCurrent;
|
||||
|
||||
public:
|
||||
static void Create(); // Initialize OGL Hook.
|
||||
};
|
||||
|
||||
#endif//__INCLUDED_OPENGL_HOOK_H__
|
||||
Loading…
Add table
Add a link
Reference in a new issue