From 0a2fdd0b740da1ae3daf0b2a46dfe22b9c75a02f Mon Sep 17 00:00:00 2001 From: Nicholas Johnson Date: Wed, 3 Sep 2025 13:11:05 -0400 Subject: [PATCH] Add xgputexturesizestack structures --- libs/xassets/xgputexturesizestack.cpp | 20 ++++++++++++++++++++ libs/xassets/xgputexturesizestack.h | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 libs/xassets/xgputexturesizestack.cpp create mode 100644 libs/xassets/xgputexturesizestack.h diff --git a/libs/xassets/xgputexturesizestack.cpp b/libs/xassets/xgputexturesizestack.cpp new file mode 100644 index 0000000..0533172 --- /dev/null +++ b/libs/xassets/xgputexturesizestack.cpp @@ -0,0 +1,20 @@ +#include "xgputexturesizestack.h" + +XGpuTextureSizeStack::XGpuTextureSizeStack() + : XAsset() + , mWidth(0) + , mHeight(0) + , mDepth(0) +{ + +} + +void XGpuTextureSizeStack::ParseData(QDataStream *aStream) +{ + +} + +void XGpuTextureSizeStack::Clear() +{ + +} diff --git a/libs/xassets/xgputexturesizestack.h b/libs/xassets/xgputexturesizestack.h new file mode 100644 index 0000000..e7617a0 --- /dev/null +++ b/libs/xassets/xgputexturesizestack.h @@ -0,0 +1,20 @@ +#ifndef XGPUTEXTURESIZESTACK_H +#define XGPUTEXTURESIZESTACK_H + +#include "xasset.h" + +class XGpuTextureSizeStack : public XAsset +{ +public: + explicit XGpuTextureSizeStack(); + + void ParseData(QDataStream *aStream) override; + void Clear() override; + +private: + quint32 mWidth; + quint32 mHeight; + quint32 mDepth; +}; + +#endif // XGPUTEXTURESIZESTACK_H