mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-05 00:25:36 +08:00
61 lines
2.1 KiB
C++
61 lines
2.1 KiB
C++
/*
|
|
* Created using https://github.com/a2x/cs2-dumper
|
|
* Thu, 7 Dec 2023 03:13:24 +0000
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
|
|
namespace CSSDSEndFrameViewInfo {
|
|
constexpr std::ptrdiff_t m_nViewId = 0x0; // uint64_t
|
|
constexpr std::ptrdiff_t m_ViewName = 0x8; // CUtlString
|
|
}
|
|
|
|
namespace CSSDSMsg_EndFrame {
|
|
constexpr std::ptrdiff_t m_Views = 0x0; // CUtlVector<CSSDSEndFrameViewInfo>
|
|
}
|
|
|
|
namespace CSSDSMsg_LayerBase {
|
|
constexpr std::ptrdiff_t m_viewId = 0x0; // SceneViewId_t
|
|
constexpr std::ptrdiff_t m_ViewName = 0x10; // CUtlString
|
|
constexpr std::ptrdiff_t m_nLayerIndex = 0x18; // int32_t
|
|
constexpr std::ptrdiff_t m_nLayerId = 0x20; // uint64_t
|
|
constexpr std::ptrdiff_t m_LayerName = 0x28; // CUtlString
|
|
constexpr std::ptrdiff_t m_displayText = 0x30; // CUtlString
|
|
}
|
|
|
|
namespace CSSDSMsg_PostLayer { // CSSDSMsg_LayerBase
|
|
}
|
|
|
|
namespace CSSDSMsg_PreLayer { // CSSDSMsg_LayerBase
|
|
}
|
|
|
|
namespace CSSDSMsg_ViewRender {
|
|
constexpr std::ptrdiff_t m_viewId = 0x0; // SceneViewId_t
|
|
constexpr std::ptrdiff_t m_ViewName = 0x10; // CUtlString
|
|
}
|
|
|
|
namespace CSSDSMsg_ViewTarget {
|
|
constexpr std::ptrdiff_t m_Name = 0x0; // CUtlString
|
|
constexpr std::ptrdiff_t m_TextureId = 0x8; // uint64_t
|
|
constexpr std::ptrdiff_t m_nWidth = 0x10; // int32_t
|
|
constexpr std::ptrdiff_t m_nHeight = 0x14; // int32_t
|
|
constexpr std::ptrdiff_t m_nRequestedWidth = 0x18; // int32_t
|
|
constexpr std::ptrdiff_t m_nRequestedHeight = 0x1C; // int32_t
|
|
constexpr std::ptrdiff_t m_nNumMipLevels = 0x20; // int32_t
|
|
constexpr std::ptrdiff_t m_nDepth = 0x24; // int32_t
|
|
constexpr std::ptrdiff_t m_nMultisampleNumSamples = 0x28; // int32_t
|
|
constexpr std::ptrdiff_t m_nFormat = 0x2C; // int32_t
|
|
}
|
|
|
|
namespace CSSDSMsg_ViewTargetList {
|
|
constexpr std::ptrdiff_t m_viewId = 0x0; // SceneViewId_t
|
|
constexpr std::ptrdiff_t m_ViewName = 0x10; // CUtlString
|
|
constexpr std::ptrdiff_t m_Targets = 0x18; // CUtlVector<CSSDSMsg_ViewTarget>
|
|
}
|
|
|
|
namespace SceneViewId_t {
|
|
constexpr std::ptrdiff_t m_nViewId = 0x0; // uint64_t
|
|
constexpr std::ptrdiff_t m_nFrameCount = 0x8; // uint64_t
|
|
} |