diff options
author | cosmic-linden <111533034+cosmic-linden@users.noreply.github.com> | 2024-01-19 09:34:52 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-19 09:34:52 -0800 |
commit | 09ee84f675cf08f98cbd49516c5e01c289b42a20 (patch) | |
tree | e6e4c01eccc2f3b65b2cd2f3e9e141efb2faa8f2 /indra/newview/llmaterialeditor.cpp | |
parent | 586e4cd090b22f11a68fa635e598847ce3b84d21 (diff) | |
parent | 46bc94074d59a898e94eefd73363aed2d27f3e05 (diff) |
Merge pull request #649 from secondlife/davep/21
Put 2k textures behind a feature flag
Diffstat (limited to 'indra/newview/llmaterialeditor.cpp')
-rw-r--r-- | indra/newview/llmaterialeditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llmaterialeditor.cpp b/indra/newview/llmaterialeditor.cpp index 34f2f77d25..45bb350e1f 100644 --- a/indra/newview/llmaterialeditor.cpp +++ b/indra/newview/llmaterialeditor.cpp @@ -1872,7 +1872,7 @@ static void pack_textures( if (normal_img) { // create a losslessly compressed version of the normal map - normal_j2c = LLViewerTextureList::convertToUploadFile(normal_img, 1024, false, true); + normal_j2c = LLViewerTextureList::convertToUploadFile(normal_img, 2048, false, true); LL_DEBUGS("MaterialEditor") << "Normal: " << normal_j2c->getDataSize() << LL_ENDL; } |