diff options
author | Dave Parks <davep@lindenlab.com> | 2012-10-12 17:25:17 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-10-12 17:25:17 -0500 |
commit | 9b7bfcf594a8388eae087886c53ead164251c62e (patch) | |
tree | 78475b190f8258d7ff79b695557c12286a117ae8 /indra/newview/llfloatermodelpreview.h | |
parent | b8f88a535c1441bd76482e5c42d99adcb5371ca6 (diff) |
MAINT-1568 Fix for inconsistent triangle counts when changing LoD sources in model importer
Diffstat (limited to 'indra/newview/llfloatermodelpreview.h')
-rw-r--r-- | indra/newview/llfloatermodelpreview.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/indra/newview/llfloatermodelpreview.h b/indra/newview/llfloatermodelpreview.h index ab319c30d5..e588418f7b 100644 --- a/indra/newview/llfloatermodelpreview.h +++ b/indra/newview/llfloatermodelpreview.h @@ -311,6 +311,15 @@ class LLModelPreview : public LLViewerDynamicTexture, public LLMutex typedef boost::signals2::signal<void (bool)> model_updated_signal_t; public: + + typedef enum + { + LOD_FROM_FILE = 0, + GENERATE, + USE_LOD_ABOVE, + } eLoDMode; + +public: LLModelPreview(S32 width, S32 height, LLFloater* fmp); virtual ~LLModelPreview(); |