summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2020-10-14 22:35:16 +0300
committerAndrey Lihatskiy <alihatskiy@productengine.com>2020-10-14 22:35:16 +0300
commit6299326bed3efd9367445c281eff00b8985a8c6d (patch)
tree60b858efe81c7e57858367d0b1bbe3fc97fbde3d /indra
parent35708568d684b2619e1cfcf66213c93a98fd1ab2 (diff)
build fix
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llfloatermodelpreview.cpp67
1 files changed, 0 insertions, 67 deletions
diff --git a/indra/newview/llfloatermodelpreview.cpp b/indra/newview/llfloatermodelpreview.cpp
index ab637ae529..b9c03f66a3 100644
--- a/indra/newview/llfloatermodelpreview.cpp
+++ b/indra/newview/llfloatermodelpreview.cpp
@@ -1620,73 +1620,6 @@ void LLFloaterModelPreview::refresh()
sInstance->mModelPreview->mDirty = true;
}
-//static
-void LLModelPreview::textureLoadedCallback(
- BOOL success,
- LLViewerFetchedTexture *src_vi,
- LLImageRaw* src,
- LLImageRaw* src_aux,
- S32 discard_level,
- BOOL final,
- void* userdata )
-{
- if (!LLFloaterModelPreview::sInstance)
- {
- return;
- }
-
- // there is a chance that user will manage to open floater second
- // time right after closing it, while textures are still loading
- // this needs a reliable method to check validity of userdata
- LLModelPreview* preview = (LLModelPreview*) userdata;
- if (preview != LLFloaterModelPreview::sInstance->mModelPreview)
- {
- return;
- }
-
- preview->refresh();
-
- if(final && preview->mModelLoader)
- {
- if(preview->mModelLoader->mNumOfFetchingTextures > 0)
- {
- preview->mModelLoader->mNumOfFetchingTextures-- ;
- }
- }
-}
-
-// static
-bool LLModelPreview::lodQueryCallback()
-{
- // not the best solution, but model preview belongs to floater
- // so it is an easy way to check that preview still exists.
- LLFloaterModelPreview* fmp = LLFloaterModelPreview::sInstance;
- if (fmp && fmp->mModelPreview)
- {
- LLModelPreview* preview = fmp->mModelPreview;
- if (preview->mLodsQuery.size() > 0)
- {
- S32 lod = preview->mLodsQuery.back();
- preview->mLodsQuery.pop_back();
- preview->genLODs(lod);
-
- // return false to continue cycle
- return false;
- }
- }
- // nothing to process
- return true;
-}
-
-void LLModelPreview::onLODParamCommit(S32 lod, bool enforce_tri_limit)
-{
- if (!mLODFrozen)
- {
- genLODs(lod, 3, enforce_tri_limit);
- refresh();
- }
-}
-
LLFloaterModelPreview::DecompRequest::DecompRequest(const std::string& stage, LLModel* mdl)
{
mStage = stage;