Add xgputexturesizestack structures

This commit is contained in:
Nicholas Johnson 2025-09-03 13:11:05 -04:00
parent a2959f9b29
commit 0a2fdd0b74
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,20 @@
#include "xgputexturesizestack.h"
XGpuTextureSizeStack::XGpuTextureSizeStack()
: XAsset()
, mWidth(0)
, mHeight(0)
, mDepth(0)
{
}
void XGpuTextureSizeStack::ParseData(QDataStream *aStream)
{
}
void XGpuTextureSizeStack::Clear()
{
}

View File

@ -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