diff options
author | RunitaiLinden <davep@lindenlab.com> | 2023-06-26 15:37:33 -0500 |
---|---|---|
committer | RunitaiLinden <davep@lindenlab.com> | 2023-06-26 15:37:33 -0500 |
commit | 774c2d0f88c15b3de19345674e797321d625d1d8 (patch) | |
tree | beed87ce884ab2c551a5aed05817bf06052226d5 /indra/llmath/llvolume.h | |
parent | 21b67896e9d1d181f39b8e44b9efe2b4c153d22b (diff) | |
parent | e7df845cb7d8061356f611ec06de609aa6ba4298 (diff) |
Merge branch 'DRTVWR-559' of github.com:secondlife/viewer into DRTVWR-559
Diffstat (limited to 'indra/llmath/llvolume.h')
-rw-r--r-- | indra/llmath/llvolume.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/indra/llmath/llvolume.h b/indra/llmath/llvolume.h index ad6a669531..afed98ff36 100644 --- a/indra/llmath/llvolume.h +++ b/indra/llmath/llvolume.h @@ -1111,15 +1111,18 @@ private: bool unpackVolumeFacesInternal(const LLSD& mdl); public: - virtual void setMeshAssetLoaded(BOOL loaded); - virtual BOOL isMeshAssetLoaded(); + virtual void setMeshAssetLoaded(bool loaded); + virtual bool isMeshAssetLoaded(); + virtual void setMeshAssetUnavaliable(bool unavaliable); + virtual bool isMeshAssetUnavaliable(); protected: BOOL mUnique; F32 mDetail; S32 mSculptLevel; F32 mSurfaceArea; //unscaled surface area - BOOL mIsMeshAssetLoaded; + bool mIsMeshAssetLoaded; + bool mIsMeshAssetUnavaliable; const LLVolumeParams mParams; LLPath *mPathp; |