2025-09-05 21:35:19 +00:00
|
|
|
#include "xmaterialmemory.h"
|
|
|
|
|
|
|
|
|
|
XMaterialMemory::XMaterialMemory()
|
|
|
|
|
: XAsset()
|
|
|
|
|
, mMaterial(new XMaterial())
|
|
|
|
|
, mMemory(0)
|
|
|
|
|
{
|
2025-09-10 21:58:26 -04:00
|
|
|
SetName("Material Memory");
|
2025-09-05 21:35:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
XMaterialMemory::~XMaterialMemory()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-10 21:58:26 -04:00
|
|
|
void XMaterialMemory::ParseData(XDataStream *aStream)
|
2025-09-05 21:35:19 +00:00
|
|
|
{
|
2025-09-10 21:58:26 -04:00
|
|
|
Q_UNUSED(aStream);
|
|
|
|
|
|
|
|
|
|
// TODO: Fill in XMaterialMemory::ParseData
|
2025-09-05 21:35:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void XMaterialMemory::Clear()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|