2025-09-03 13:11:05 -04:00
|
|
|
#ifndef XGPUTEXTURESIZESTACK_H
|
|
|
|
|
#define XGPUTEXTURESIZESTACK_H
|
|
|
|
|
|
|
|
|
|
#include "xasset.h"
|
|
|
|
|
|
|
|
|
|
class XGpuTextureSizeStack : public XAsset
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit XGpuTextureSizeStack();
|
|
|
|
|
|
2025-09-10 21:58:26 -04:00
|
|
|
void ParseData(XDataStream *aStream) override;
|
2025-09-03 13:11:05 -04:00
|
|
|
void Clear() override;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
quint32 mWidth;
|
|
|
|
|
quint32 mHeight;
|
|
|
|
|
quint32 mDepth;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // XGPUTEXTURESIZESTACK_H
|