diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-12-08 22:58:27 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-12-10 18:12:41 +0200 |
commit | 7414f71880b3ecda58a66233aeade8325535cae0 (patch) | |
tree | 14267a1798fbdf5ff52b58018ef1b5b6f245eb1f /indra/newview/llmodelpreview.h | |
parent | cba1daaf6be4dfd031cd10d9aea07c7124d32726 (diff) |
SL-16471 Removed unneeded MeshOpt generation method
Diffstat (limited to 'indra/newview/llmodelpreview.h')
-rw-r--r-- | indra/newview/llmodelpreview.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/newview/llmodelpreview.h b/indra/newview/llmodelpreview.h index 7d4507ccf2..9361acfc49 100644 --- a/indra/newview/llmodelpreview.h +++ b/indra/newview/llmodelpreview.h @@ -125,9 +125,8 @@ public: { LOD_FROM_FILE = 0, MESH_OPTIMIZER_AUTO, // automatically selects method based on model or face - MESH_OPTIMIZER_COMBINE, - MESH_OPTIMIZER, - MESH_OPTIMIZER_SLOPPY, + MESH_OPTIMIZER_COMBINE, // combines faces into a single model, simplifies, then splits back into faces + MESH_OPTIMIZER_SLOPPY, // uses sloppy method, works per face USE_LOD_ABOVE, } eLoDMode; |