Files
UnrealEngine/Engine/Source/Runtime/D3D12RHI/Public/Windows/WindowsD3D12ThirdParty.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

27 lines
466 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "HAL/Platform.h"
#include "Microsoft/AllowMicrosoftPlatformTypes.h"
#if PLATFORM_64BITS
#pragma pack(push,16)
#else
#pragma pack(push,8)
#endif
#define INITGUID
THIRD_PARTY_INCLUDES_START
#include <d3d12.h>
#include <d3dx12.h>
#include <dxgi1_6.h>
#include <dxgidebug.h>
THIRD_PARTY_INCLUDES_END
#undef DrawText
#pragma pack(pop)
#include "Microsoft/HideMicrosoftPlatformTypes.h"