| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include <nn/gfx/detail/gfx_Misc.h> |
| 4 | #include <nn/nn_BitTypes.h> |
| 5 | |
| 6 | namespace nn::gfx { |
| 7 | |
| 8 | template <class TTarget> |
| 9 | struct RootSignatureImplData { |
| 10 | Bit8 state; |
| 11 | char reserved[3]; |
| 12 | uint32_t memorySize; |
| 13 | detail::Ptr<void> pWorkMemory; |
| 14 | }; |
| 15 | |
| 16 | } // namespace nn::gfx |