XPlor/libs/xassets/xgputexturesizestack2d.cpp

23 lines
400 B
C++
Raw Normal View History

2025-09-03 13:11:27 -04:00
#include "xgputexturesizestack2d.h"
XGpuTextureSizeStack2D::XGpuTextureSizeStack2D()
: XAsset()
, mWidth(0)
, mHeight(0)
{
2025-09-10 21:58:26 -04:00
SetName("GPU Texture Size Stack 2D");
2025-09-03 13:11:27 -04:00
}
2025-09-10 21:58:26 -04:00
void XGpuTextureSizeStack2D::ParseData(XDataStream *aStream)
2025-09-03 13:11:27 -04:00
{
2025-09-10 21:58:26 -04:00
Q_UNUSED(aStream);
// TODO: Fill in XGpuTextureSizeStack2D::ParseData
2025-09-03 13:11:27 -04:00
}
void XGpuTextureSizeStack2D::Clear()
{
mWidth = 0;
mHeight = 0;
}