mirror of
https://github.com/flightlessmango/MangoHud.git
synced 2024-11-11 19:10:55 +00:00
21 lines
297 B
C
21 lines
297 B
C
|
#include <dxgi.h>
|
||
|
#include <dxgi1_5.h>
|
||
|
#include <dxgi1_4.h>
|
||
|
#ifdef _MSC_VER
|
||
|
#include <d3d12.h>
|
||
|
#else
|
||
|
#include "/usr/include/wine/windows/d3d12.h"
|
||
|
#endif
|
||
|
#ifndef __D3D12_IMPL_H__
|
||
|
#define __D3D12_IMPL_H__
|
||
|
|
||
|
namespace impl
|
||
|
{
|
||
|
namespace d3d12
|
||
|
{
|
||
|
void init();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif // __D3D12_IMPL_H__
|