35 lines
621 B
C++
35 lines
621 B
C++
#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;
|
|
}
|