2025-09-05 21:34:46 +00:00
|
|
|
#include "xgfxstaticmodeldrawinst.h"
|
|
|
|
|
|
|
|
|
|
XGfxStaticModelDrawInst::XGfxStaticModelDrawInst()
|
|
|
|
|
: XAsset()
|
|
|
|
|
, mCullDist(false)
|
|
|
|
|
, mPlacement()
|
2025-09-10 21:58:26 -04:00
|
|
|
, mModel()
|
2025-09-05 21:34:46 +00:00
|
|
|
, mReflectionProbeIndex(0)
|
|
|
|
|
, mPrimaryLightIndex(0)
|
|
|
|
|
, mLightingHandle(0)
|
|
|
|
|
, mFlags(0)
|
|
|
|
|
{
|
2025-09-10 21:58:26 -04:00
|
|
|
SetName("GFX Static Model Draw Instruction");
|
2025-09-05 21:34:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
XGfxStaticModelDrawInst::~XGfxStaticModelDrawInst()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-10 21:58:26 -04:00
|
|
|
void XGfxStaticModelDrawInst::ParseData(XDataStream *aStream)
|
2025-09-05 21:34:46 +00:00
|
|
|
{
|
2025-09-10 21:58:26 -04:00
|
|
|
Q_UNUSED(aStream);
|
|
|
|
|
|
|
|
|
|
// TODO: Fill in XGfxStaticModelDrawInst::ParseData
|
2025-09-05 21:34:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void XGfxStaticModelDrawInst::Clear()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|