From 6ce3df5514076baaf8b507dc5fda0658b992e296 Mon Sep 17 00:00:00 2001 From: Dave Parks Date: Thu, 23 Jun 2022 18:06:55 -0500 Subject: SL-17653 Flip imported GLTF textures, remove .dae and .glb/.gltf from file dialogs that don't support them --- indra/newview/llfilepicker.cpp | 2 +- indra/newview/llmaterialeditor.cpp | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'indra/newview') diff --git a/indra/newview/llfilepicker.cpp b/indra/newview/llfilepicker.cpp index 2809988ba0..3c5ac963f6 100644 --- a/indra/newview/llfilepicker.cpp +++ b/indra/newview/llfilepicker.cpp @@ -59,7 +59,7 @@ LLFilePicker LLFilePicker::sInstance; #define XML_FILTER L"XML files (*.xml)\0*.xml\0" #define SLOBJECT_FILTER L"Objects (*.slobject)\0*.slobject\0" #define RAW_FILTER L"RAW files (*.raw)\0*.raw\0" -#define MODEL_FILTER L"Model files (*.dae; *.gltf; *.glb)\0*.dae;*.gltf;*.glb\0" +#define MODEL_FILTER L"Model files (*.dae)\0*.dae\0" #define MATERIAL_FILTER L"GLTF Files (*.gltf; *.glb)\0*.gltf;*.glb\0" #define SCRIPT_FILTER L"Script files (*.lsl)\0*.lsl\0" #define DICTIONARY_FILTER L"Dictionary files (*.dic; *.xcu)\0*.dic;*.xcu\0" diff --git a/indra/newview/llmaterialeditor.cpp b/indra/newview/llmaterialeditor.cpp index 5a0c23d59b..8b4d3b832b 100644 --- a/indra/newview/llmaterialeditor.cpp +++ b/indra/newview/llmaterialeditor.cpp @@ -280,7 +280,7 @@ private: }; LLMaterialFilePicker::LLMaterialFilePicker(LLMaterialEditor* me) - : LLFilePickerThread(LLFilePicker::FFLOAD_MODEL) + : LLFilePickerThread(LLFilePicker::FFLOAD_MATERIAL) { mME = me; } @@ -325,6 +325,7 @@ static LLViewerFetchedTexture* get_texture(const std::string& folder, const tiny image->component <= 4) { LLPointer rawImage = new LLImageRaw(&image->image[0], image->width, image->height, image->component); + rawImage->verticalFlip(); ret = LLViewerTextureManager::getFetchedTexture(rawImage, FTType::FTT_LOCAL_FILE, true); @@ -449,6 +450,8 @@ void LLMaterialFilePicker::loadMaterial(const std::string& filename) mME->setDoubleSided(material_in.doubleSided); mME->openFloater(); + + mME->applyToSelection(); } void LLMaterialEditor::importMaterial() @@ -484,5 +487,7 @@ void LLMaterialEditor::applyToSelection() vobjp->getTE(i)->setGLTFMaterial(mat); vobjp->updateTEMaterialTextures(i); } + + vobjp->markForUpdate(TRUE); } } -- cgit v1.2.3