From 13a7b65f6d5b7a426b229726eb18880bfcf6697b Mon Sep 17 00:00:00 2001 From: RedLine AI Agent Date: Fri, 5 Sep 2025 21:35:00 +0000 Subject: [PATCH] Updated libs/xassets/xgfxworlddpvsstatic.cpp --- libs/xassets/xgfxworlddpvsstatic.cpp | 43 ++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 libs/xassets/xgfxworlddpvsstatic.cpp diff --git a/libs/xassets/xgfxworlddpvsstatic.cpp b/libs/xassets/xgfxworlddpvsstatic.cpp new file mode 100644 index 0000000..7092f3a --- /dev/null +++ b/libs/xassets/xgfxworlddpvsstatic.cpp @@ -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() +{ + +}