feature/test #9

Merged
njohnson merged 318 commits from feature/test into main 2025-09-07 12:35:21 -04:00
2 changed files with 40 additions and 0 deletions
Showing only changes of commit 0a2fdd0b74 - Show all commits

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