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 46 additions and 0 deletions
Showing only changes of commit a2959f9b29 - Show all commits

View File

@ -0,0 +1,18 @@
#include "xgputexturesize3d.h"
XGpuTextureSize3D::XGpuTextureSize3D()
: XAsset()
, mWidth(0)
{
}
void XGpuTextureSize3D::ParseData(QDataStream *aStream)
{
}
void XGpuTextureSize3D::Clear()
{
}

View File

@ -0,0 +1,28 @@
#ifndef XGPUTEXTURESIZE3D_H
#define XGPUTEXTURESIZE3D_H
#include "xasset.h"
class XGpuTextureSize3D : public XAsset
{
public:
explicit XGpuTextureSize3D();
void ParseData(QDataStream *aStream) override;
void Clear() override;
private:
quint32 mWidth;
quint32 mHeight;
quint32 mDepth;
};
#endif // XGPUTEXTURESIZE3D_H