feature/test #9

Merged
njohnson merged 318 commits from feature/test into main 2025-09-07 12:35:21 -04:00
Showing only changes of commit 240a643111 - Show all commits

41
libs/xassets/xgfxcell.cpp Normal file
View File

@ -0,0 +1,41 @@
#include "xgfxcell.h"
XGfxCell::XGfxCell()
: XAsset()
, mMins()
, mMaxs()
, mAabbTreeCount(0)
, mAabbTree()
, mPortalCount(0)
, mPortals()
, mCullGroupCount(0)
, mCullGroups()
, mReflectionProbeCount(0)
, mReflectionProbes()
{
}
XGfxCell::~XGfxCell()
{
}
void XGfxCell::ParseData(QDataStream *aStream)
{
}
void XGfxCell::Clear()
{
mMins = QVector3D();
mMaxs = QVector3D();
mAabbTreeCount = 0;
mAabbTree.clear();
mPortalCount = 0;
mPortals.clear();
mCullGroupCount = 0;
mCullGroups.clear();
mReflectionProbeCount = 0;
mReflectionProbes.clear();
}