Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/thirdparty/directx_headers/include/directx/d3dx12.h
9906 views
1
//*********************************************************
2
//
3
// Copyright (c) Microsoft Corporation.
4
// Licensed under the MIT License (MIT).
5
//
6
//*********************************************************
7
8
#ifndef __D3DX12_H__
9
#define __D3DX12_H__
10
11
#include "d3d12.h"
12
13
#if defined( __cplusplus )
14
15
#include "d3dx12_barriers.h"
16
#include "d3dx12_core.h"
17
#include "d3dx12_default.h"
18
#include "d3dx12_pipeline_state_stream.h"
19
#include "d3dx12_render_pass.h"
20
#include "d3dx12_resource_helpers.h"
21
#include "d3dx12_root_signature.h"
22
#include "d3dx12_property_format_table.h"
23
24
#ifndef D3DX12_NO_STATE_OBJECT_HELPERS
25
#include "d3dx12_state_object.h"
26
#endif // !D3DX12_NO_STATE_OBJECT_HELPERS
27
28
#ifndef D3DX12_NO_CHECK_FEATURE_SUPPORT_CLASS
29
#include "d3dx12_check_feature_support.h"
30
#endif // !D3DX12_NO_CHECK_FEATURE_SUPPORT_CLASS
31
32
#endif // defined( __cplusplus )
33
34
#endif //__D3DX12_H__
35
36
37