XPlor/libs/xassets/xgfxdrawsurffields.cpp

35 lines
621 B
C++
Raw Normal View History

2025-09-03 13:06:58 -04:00
#include "xgfxdrawsurffields.h"
XGfxDrawSurfFields::XGfxDrawSurfFields()
: XAsset()
, mObjectId(0)
, mReflectionProbeIndex(0)
, mCustomIndex(0)
, mMaterialSortedIndex(0)
, mPrepass(0)
, mPrimaryLightIndex(0)
, mSurfType(0)
, mPrimarySortKey(0)
, mUnused(0)
{
}
void XGfxDrawSurfFields::ParseData(QDataStream *aStream)
{
}
void XGfxDrawSurfFields::Clear()
{
mObjectId = 0;
mReflectionProbeIndex = 0;
mCustomIndex = 0;
mMaterialSortedIndex = 0;
mPrepass = 0;
mPrimaryLightIndex = 0;
mSurfType = 0;
mPrimarySortKey = 0;
mUnused = 0;
}