mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-03 09:40:14 +00:00
5893b69d1f
DX12 hook seems ok, there are some bugs remaining. ImGui setup for DX12 doesn't work.
55 lines
1.6 KiB
C++
55 lines
1.6 KiB
C++
#ifndef __INCLUDED_DX12_HOOK_H__
|
|
#define __INCLUDED_DX12_HOOK_H__
|
|
|
|
#include "Base_Hook.h"
|
|
#ifndef NO_OVERLAY
|
|
|
|
#include <d3d12.h>
|
|
#include <dxgi1_4.h>
|
|
#include "DirectX_VTables.h"
|
|
|
|
class DX12_Hook : public Base_Hook
|
|
{
|
|
public:
|
|
static constexpr const char *DLL_NAME = "d3d12.dll";
|
|
|
|
private:
|
|
static DX12_Hook* _inst;
|
|
|
|
// Variables
|
|
bool initialized;
|
|
ID3D12CommandAllocator* pCmdAlloc;
|
|
ID3D12GraphicsCommandList* pCmdList;
|
|
ID3D12DescriptorHeap* pDescriptorHeap;
|
|
D3D12_CPU_DESCRIPTOR_HANDLE mainRenderTargetDescriptor;
|
|
|
|
// Functions
|
|
DX12_Hook();
|
|
virtual ~DX12_Hook();
|
|
|
|
void resetRenderState();
|
|
void prepareForOverlay(IDXGISwapChain* pSwapChain);
|
|
|
|
// Hook to render functions
|
|
static HRESULT STDMETHODCALLTYPE MyPresent(IDXGISwapChain* _this, UINT SyncInterval, UINT Flags);
|
|
static HRESULT STDMETHODCALLTYPE MyResizeTarget(IDXGISwapChain* _this, const DXGI_MODE_DESC* pNewTargetParameters);
|
|
static HRESULT STDMETHODCALLTYPE MyResizeBuffers(IDXGISwapChain* _this, UINT BufferCount, UINT Width, UINT Height, DXGI_FORMAT NewFormat, UINT SwapChainFlags);
|
|
|
|
decltype(&IDXGISwapChain::Present) Present;
|
|
decltype(&IDXGISwapChain::ResizeBuffers) ResizeBuffers;
|
|
decltype(&IDXGISwapChain::ResizeTarget) ResizeTarget;
|
|
|
|
// Hook functions so we know we use DX11
|
|
//static decltype(D3D12CreateDevice) MyD3D12CreateDevice;
|
|
|
|
//decltype(D3D12CreateDevice)* D3D12CreateDevice;
|
|
|
|
public:
|
|
bool start_hook();
|
|
static DX12_Hook* Inst();
|
|
|
|
void loadFunctions(ID3D12Device *pDevice, IDXGISwapChain *pSwapChain);
|
|
};
|
|
|
|
#endif//NO_OVERLAY
|
|
#endif//__INCLUDED_DX12_HOOK_H__
|