XPlor/libs/xassets/xgfxstaticmodeldrawinst.cpp

32 lines
603 B
C++
Raw Permalink Normal View History

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