HatchitGraphics
ht_d3d12types.h
1 
15 #pragma once
16 
17 #include <ht_directx.h>
18 #include <ht_string.h>
19 #include <cstdint>
20 
21 
22 namespace Hatchit {
23 
24  namespace Graphics {
25 
26  namespace DX {
27 
29  {
30  uint32_t bindIndex;
31  ID3D12Buffer* buffer;
32  BYTE* data;
33  std::string id;
34  };
35 
37  {
38  uint32_t byteOffset;
39  size_t size;
40  uint32_t constantBufferIndex;
41  };
42 
43  }
44  }
45 }
Hatchit Engine Copyright(c) 2015-2016 Third-Degree.
Definition: ht_color.h:19
Definition: ht_d3d12types.h:36
Definition: ht_d3d12types.h:28