You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MangoHud/src/win/d3d12_hook.h

22 lines
402 B
C++

#pragma once
#include <dxgi.h>
#include <dxgi1_5.h>
#include <dxgi1_4.h>
#ifdef _MSC_VER
#include <d3d12.h>
#else
#include "/usr/i686-w64-mingw32/include/d3d12.h"
#endif
#ifndef __D3D12_IMPL_H__
#define __D3D12_IMPL_H__
namespace impl
{
namespace d3d12
{
void init();
}
}
long __fastcall hkPresent12(IDXGISwapChain3* pSwapChain, UINT SyncInterval, UINT Flags);
#endif // __D3D12_IMPL_H__