Updated libs/xassets/xgfxworlddpvsstatic.cpp

This commit is contained in:
RedLine AI Agent 2025-09-05 21:35:00 +00:00
parent 26ba52bcd2
commit 13a7b65f6d

View File

@ -0,0 +1,43 @@
#include "xgfxworlddpvsstatic.h"
XGfxWorldDpvsStatic::XGfxWorldDpvsStatic()
: XAsset()
, mModelCount(0)
, mStaticSurfaceCount(0)
, mLitSurfsBegin(0)
, mLitSurfsEnd(0)
, mDecalSurfsBegin(0)
, mDecalSurfsEnd(0)
, mEmissiveSurfsBegin(0)
, mEmissiveSurfsEnd(0)
, mModelVisDataCount(0)
, mSurfaceVisDataCount(0)
, mSmodelVisData()
, mSurfaceVisData()
, mLodData(nullptr)
, mSortedSurfIndex(nullptr)
, mModelInsts()
, mSurfaces()
, mCullGroups()
, mModelDrawInsts()
, mSurfaceMaterials()
, mSurfaceCastsSunShadow(nullptr)
, mUsageCount(0)
{
}
XGfxWorldDpvsStatic::~XGfxWorldDpvsStatic()
{
}
void XGfxWorldDpvsStatic::ParseData(QDataStream *aStream)
{
}
void XGfxWorldDpvsStatic::Clear()
{
}