Print field types

This commit is contained in:
a2x
2023-10-01 14:43:48 +10:00
parent 18e90bcf8c
commit 6d04af2758
73 changed files with 40045 additions and 39911 deletions

View File

@@ -3,22 +3,22 @@
#include <cstddef>
namespace RenderInputLayoutField_t {
constexpr std::ptrdiff_t m_pSemanticName = 0x0;
constexpr std::ptrdiff_t m_nSemanticIndex = 0x20;
constexpr std::ptrdiff_t m_Format = 0x24;
constexpr std::ptrdiff_t m_nOffset = 0x28;
constexpr std::ptrdiff_t m_nSlot = 0x2C;
constexpr std::ptrdiff_t m_nSlotType = 0x30;
constexpr std::ptrdiff_t m_nInstanceStepRate = 0x34;
constexpr std::ptrdiff_t m_pSemanticName = 0x0; // uint8[32]
constexpr std::ptrdiff_t m_nSemanticIndex = 0x20; // int32
constexpr std::ptrdiff_t m_Format = 0x24; // uint32
constexpr std::ptrdiff_t m_nOffset = 0x28; // int32
constexpr std::ptrdiff_t m_nSlot = 0x2C; // int32
constexpr std::ptrdiff_t m_nSlotType = 0x30; // RenderSlotType_t
constexpr std::ptrdiff_t m_nInstanceStepRate = 0x34; // int32
}
namespace VsInputSignatureElement_t {
constexpr std::ptrdiff_t m_pName = 0x0;
constexpr std::ptrdiff_t m_pSemantic = 0x40;
constexpr std::ptrdiff_t m_pD3DSemanticName = 0x80;
constexpr std::ptrdiff_t m_nD3DSemanticIndex = 0xC0;
constexpr std::ptrdiff_t m_pName = 0x0; // char[64]
constexpr std::ptrdiff_t m_pSemantic = 0x40; // char[64]
constexpr std::ptrdiff_t m_pD3DSemanticName = 0x80; // char[64]
constexpr std::ptrdiff_t m_nD3DSemanticIndex = 0xC0; // int32
}
namespace VsInputSignature_t {
constexpr std::ptrdiff_t m_elems = 0x0;
constexpr std::ptrdiff_t m_elems = 0x0; // CUtlVector< VsInputSignatureElement_t >
}