From b34959ba1ddf75c9696d8f11eb416ece7eab1aee Mon Sep 17 00:00:00 2001 From: RedLine AI Agent Date: Fri, 5 Sep 2025 21:34:33 +0000 Subject: [PATCH] Updated libs/xassets/xgfxportal.cpp --- libs/xassets/xgfxportal.cpp | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 libs/xassets/xgfxportal.cpp diff --git a/libs/xassets/xgfxportal.cpp b/libs/xassets/xgfxportal.cpp new file mode 100644 index 0000000..096ac19 --- /dev/null +++ b/libs/xassets/xgfxportal.cpp @@ -0,0 +1,34 @@ +#include "xgfxportal.h" +#include "xgfxcell.h" + +XGfxPortal::XGfxPortal() + : XAsset() + , mWritable() + , mPlane() + , mCell(new XGfxCell()) + , mVertices() + , mVertexCount(0) + , mHullAxis() +{ + +} + +XGfxPortal::~XGfxPortal() +{ + +} + +void XGfxPortal::ParseData(QDataStream *aStream) +{ + +} + +void XGfxPortal::Clear() +{ + mWritable = XGfxPortalWritable(); + mPlane.Clear(); + mCell->Clear(); + mVertices = QVector3D(); + mVertexCount = 0; + mHullAxis.clear(); +}