XPlor/libs/xassets/xgputexturesizestack1d.cpp

21 lines
366 B
C++
Raw Normal View History

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